如果輸出的是:bash,sh,zsh,那么用的可能就是Bourne Shell的一個變種。 Mac OS X 10.2之前默認的是C Shell。 Mac OS X 10.3之后默認的是Bourne Shell。 (2)如果是Bourne Shell。 那么可以把要添加的環(huán)境變量添加到主目錄下面的.profile或者.bash_profile,如果存在沒有關(guān)系添加進去即可,如果沒有生成一個。
zsh: sure you want to delete all the files in /home/hungerr/test [yn]? y zsh: argument list too long: rm rm -f * 3.63s user 0.29s system 98% cpu 3.985 total 由于文件數(shù)量過多,rm不起作用。 2. find刪除 $ time find ./ -type f -exec rm {} \; ...