1

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

dromodel
  • 287

1 Answers1

1

The following worked:

/bin/csh -cf "job &" >& /dev/null
Gareth
  • 18,809
dromodel
  • 287