nohup에서 무언가를 실행하는 데 얼마나 많은 시간이 필요한지 알고 싶습니다. 나는 이것이 효과가 있다는 것을 안다.
$ time sleep 2
real 0m2.001s
user 0m0.000s
sys 0m0.001s
그러나 왜 nohup과 작동하지 않습니까?
$ nohup time sleep 2 &
[1] 29456
$ nohup: ignoring input and appending output to 'nohup.out'
nohup: failed to run command 'time': No such file or directory
[1]+ Exit 127 nohup time sleep 2