예를 들어, 다음을 수행하고 싶지만 실패합니다.
$ 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 &