例如,我想做以下事情,但失败了:
$ echo "mytext bla" > test.txt&
$ rm test.txt
/bin/rm: cannot remove 'test.txt': No such file or directory
我尝试执行的实际命令是:
ionice -c 3 dropbox start&
答案1
@mitnk(见上文)提出的答案是在 之前添加一个空格&
,如下所示:
echo "mytext bla" > test.txt &
例如,我想做以下事情,但失败了:
$ echo "mytext bla" > test.txt&
$ rm test.txt
/bin/rm: cannot remove 'test.txt': No such file or directory
我尝试执行的实际命令是:
ionice -c 3 dropbox start&
@mitnk(见上文)提出的答案是在 之前添加一个空格&
,如下所示:
echo "mytext bla" > test.txt &