Shell Scripts: the lazy man's dream
What is it, and why use it?
your first shell script:
#!/bin/bash echo "Hello, world"
making it executable:
chmod +x ./myscript
running it:
./myscript
NEXT
INDEX
Master Index