What does an ampersand at the beginning of a line do in csh? It seems to be ignored (with no error message), but why?
相关问题
- How to get the return code of a shell script in lu
- Is shmid returned by shmget() unique across proces
- how to get running process information in java?
- Invoking Mirth Connect CLI with Powershell script
- Error building gcc 4.8.3 from source: libstdc++.so
The best way to answer will be example. Taking idea of JoelFAn ahaed:
EXAMPLE 1
EXAMPLE 2
EXAMPLE3
The examples are self explanatory.
Thanks
Found something interesting:
Maybe it's treating it like an empty command?
I can't find anything in csh docs about it. However, I know in make it suppresses any output from the command (but still runs it). Perhaps that's what it is doing.