7 lines
195 B
Bash
7 lines
195 B
Bash
|
|
#!/bin/csh -f
|
||
|
|
|
||
|
|
# C Shell has a similar comment syntax, but only allows comments in a
|
||
|
|
# script file, not in terminal input.
|
||
|
|
|
||
|
|
echo Hello#With C Shell, the hash can also be in the middle of a word.
|