Linux bash: A note about quotes

A note about quotes Single quote: ' ' supresses all special characters. Example: root@bt:/# echo '$?' $? $? is used to know the exit status, because $? is enclosed within a pair of single quotes all special meaning has been suppressed and printed out as it is. Double quote: " " supresses most of the special … Continue reading Linux bash: A note about quotes

Bash script: Turn up eth

A simple script for turning up the eth interface and get ip address via dhcp. #!/bin/bash #Author: Cyrus #Purpose: A simple bash script that turns on eth interface and acquire IP address from dhcp server. n=$1 if [ $n -ge 0 ] then ifconfig eth$n up; dhclient eth$n #ifconfig eth$1 up; dhclient eth$1 else echo … Continue reading Bash script: Turn up eth

Bash: Watching selected log file.

Reference: http://askubuntu.com/questions/1705/how-can-i-create-a-select-menu-in-a-shell-script There is an answer inside which actually works for my situation. Previous bash script which was not working #!/bin/bash LIST="syslog dmesg kern boot dpkg mintsystem Exit" PS3='Choose a log file to follow: ' select var in $LIST do if [ "$LIST" = "syslog" ] then watch tail /var/log/syslog elif [ "$LIST" = "dmesg" ] … Continue reading Bash: Watching selected log file.