を(文字列paramです)機能を使用するには:バッシュ:私は私の.bashrcにこれらの機能を持っているか、他の機能に
# 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の機能をテストする前に、私はタールを作成します。
nn untar test.txt.tar
しかし、これだけでは動作します:
echo test > test.txt
tar cvf test.txt.tar test.txt
今、私が何をしたいです
nn tar xvf test.txt.tar
ここnohup.outでエラー:
nice: ‘untar’: No such file or directory