たとえば、次のことをしたいが失敗します。
$ 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 &