基本上,如何使這兩個步驟:如何爲`cd`寫一個bash別名,也是`ls`目錄內容之後?
$:/ 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
編輯-2http://bhami.com/rosetta.html
編輯-3What are the special dollar sign shell variables?
可能重複:http://askubuntu.com/questions/16106/how-can-i-create -an-alias-for-cd-and-ls –
不清楚你的別名應該做什麼,而正常的'cd'不能。此外,別名不贊成使用別名。 –
@ n.m。 'cd'不顯示新目錄的內容。 – chepner