1
我有這些功能在我的.bashrc中使用的功能(這是一個字符串PARAM):擊:如何在其他功能
# This function just untar a file:
untar()
{
tar xvf $1
}
# This function execute a command with nohup (you can leave the terminal) and nice for a low priority on the cpu:
nn()
{
nohup nice -n 15 "[email protected]" &
}
測試NN功能之前,我創建了一個焦油
echo test > test.txt
tar cvf test.txt.tar test.txt
現在我想做的是:
nn untar test.txt.tar
但只有這樣工作的:
nn tar xvf test.txt.tar
在這裏,錯誤的nohup.out:
nice: ‘untar’: No such file or directory