I’ve always wanted to know how to create command line options for my Bash scripts. After some research I found there are two functions available to handle this; getopt and getopts. I’m not going to get into the debate about which one is better. getopts is a shell builtin and seems a little easier to …
Continue reading Bash Getopts – Scripts with Command Line Optionsbash
There are several log files in a Linux system. Keeping an eye on these log files can be one of the important tasks of a Linux System administrator. You can easily view the end of a log file using the tail command. But if you want to monitor that file all day long it’s pretty …
Continue reading Command Line Basics – watchMy main computer at home acts as a file and media server for the whole house, so it’s pretty much turned on all the time. There are times when I’m away from home that I want to remotely access or download a file from my home computer. My home internet service uses a dynamic IP …
Continue reading Keeping Track of My IP AddressIf you’ve been using Linux for a while, you may be familiar with the terminal command, date. The date command will display the current date and time to the terminal. On my system, the default output of date looks like this:
Continue reading Creating A Terminal Window ClockIn today’s post I’m going to show how to use the command line find program to search for files. There are certainly different GUI tools available in Linux, such as Beagle, to search for files. The advantage of many of these systems is that they index the files on your system so that the searching …
Continue reading Command Line Basics: Finding Files