Using csh, how do I put a job in the background without generating any output?
[prompt] job & [1] 5103
I want to eliminate the line [1] 5103
[1] 5103
The following worked:
/bin/csh -cf "job &" >& /dev/null