In this post I'll show you how to create a self extracting bash script to automate the installation of files on your system. This script requires coreutils (for cat, tail), awk, gzip, tar and bash.
How to create a bash script for starting VirtualBox VMs Your email has been sent Jack Wallen shows you a nifty trick for easily starting, stopping, pausing, and resuming your VirtualBox virtual ...
Many bash scripts use arguments to control the commands that they will run and the information that will be provided to the people running them. This post examines a number of ways that you can verify ...
I've recently written about using bash arrays and bash regular expressions, so here's a more useful example of using them to test IP addresses for validity. To belabor the obvious: IP addresses are 32 ...
I have a bash script that needs to be able to mount/umount and write to a DVD burner. It all works when it is run as root, but even if I chmod u+s it and leave it owned as root, my other user cannot ...
I have a single shell script that's being run for both bash and ksh users. I've run into an issue with an array definition. which doesn't work for bash. So I thought I'd check for the shell, then have ...