I want to have variable in tcsh to hold the usage info of my script, so in my script, whenever I write echo $usage, it will print
my_script
-h : -help
-b : do boo
etc`.
Is there a way to do this? Can this be done using the << EOF ?
I've tried something like this, but it failed:
set help = << EOF
my_script
-h : print help
-b : do boo
EOF
thanks