基本上,如何进行这两个步骤:
$:/ cd Users
$:/Users ls
user1 user2 user3
一步到位:
$/ cd Users
$:/Users
user1 user2 user3
bash脚本的伪代码可以是:
after changing directories, pause the input state and take another command
command('ls')
修改 这是一个很棒的bash参考 - http://cb.vu/unixtoolbox.xhtml#scripting
答案 0 :(得分:0)
alias mycd='cd $(history 1 | sed "s/.*mycd \(.*\)/\1/") && ls #'