mtWeb  Home > Linux Shell ScriptsSitemap  Search

Linux Shell Scripts

Linux Download Managers
Review of Linux download managers.[ Viewed 28339 times, 21 comments ]
Wget - Download manager
Wget shell scripts for easier usage and how to make filenames DOS/Windows compatible.[ Viewed 48432 times, 11 comments ]
General purpose shell scripts
General shell scripts for bash and possibly sh.[ Viewed 19373 times, 28 comments ]
HTML/XHTML Validation
Unix shell and Python scripts for automatic HTML/XHTML validation of pages, works also with generated pages.[ Viewed 3577 times, 0 comments ]

Articles 1 - 4 of 4.

Previous | 1 | Next

Check this out

If you're using Linux stand out and be counted, commercial OS's have statistics they can rely on to say how many copies are sold out, why don't we have statistics too and don't allow some companies to speculate on that.

An Analysis of Microsoft's "Competing with Linux" Document by Con Zymaris, has some interesting facts as of what Micro$oft want people to think about Linux.

General notes

Always use absolute pathnames like /path/to/filename and not relative like filename or set up a well known PATH.

Check everything twice before you enter anything (especially while logged in as root).

If you don't know how to create a shell script simply copy the text and save it as a separate file and then at the shell type chmod +x filename where filename is the name you saved the script as. Lines beginning with #( hash) are comments except for the first line which is usually #!/bin/bash or #!/bin/sh (for shell scripts) and points to the program that should execute the code.