मैं जानना चाहता हूं कि किसी चीज को चलाने में कितना समय लगता है। मुझे पता है कि यह काम करता है:
$ 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