5 Feb
2002
5 Feb
'02
22:35
On Tue, 5 Feb 2002 17:31:02 -0500 Harry G <harrycg@earthlink.net> wrote:
OK. Now for a really dumb question. Do I write the scripts in an editor, or from the command line or what? In DOS, you used an editor and named it with an .bat extension. I would suspect you would do some sort of chmod ??? filename, then run it with a ./file.sh?
You don't need any extension in linux, just chmod the file to 700, and it will execute. chmod 700 myscript You can put the first line #!/bin/sh to make it easier for the shell to know it's a script; but a shell script will run without that #!/bin/sh. -- $|=1;while(1){print pack("h*",'75861647f302d4560275f6272797f3');sleep(1); for(1..16){for(8,32,8,7){print chr($_);}select(undef,undef,undef,.05);}}