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

link|improve this question

0% accept rate
feedback

1 Answer

The following worked:

/bin/csh -cf "job &" >& /dev/null
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.