Various Commands

Below are some useful commands for those either just learning Ubuntu 14.04 or a resource for various commands. I will continually expand on them.

Directory Exists:
  1. if [ ! -d "##DIRECTORY##" ]; then
  2. fi
Format a Number as two digits even if it is 1:
  1. $(printf %02d $variable)
Increment a Number:
  1. variable=`expr $variable + 1`
Create a new file:
  1. touch ##FILENAME##
Check if a file contains a string:

This will return 0 if it is not found.

  1. $(echo `grep -c '##TextToSearch##' ##FileNameToSearch##`)
Create a link to a file:
  1. ln -s ##OriginalFile## ##LinkedFile##
List all packages installed:
  1. dpkg -l
Remove installed package:
  1. sudo apt-get --purge remove ##PACKAGENAME##
Install Package:
  1. sudo apt-get install ##PACKAGENAME##
Package Exists:

This will return 0 if it is not found.

  1. $(echo `dpkg-query -l | grep -c ##PACKAGE_NAME##`)
Python Package Exists:

This will return 0 if it is not found.

  1. $(echo `pip freeze | grep -c ##PACKAGE_NAME##`)
Get IP Address:
  1. ip addr show
Find a file:
  1. find / -type f -name "##FILENAME##"
Restart Service:
  1. /etc/init.d/postgresql restart
  2. invoke-rc.d postgresql restart
Kill a process:
  1. kill ##PID##
Terminal Loop:

In the terminal let’s say you want to loop and display a value. You can do it like below. I am just printing free memory. But really you can do anything.

  1. while true; do free -m | grep /+ | gawk '{ print $4 }'; sleep 2; done
Switch to root:
  1. sudo su root
Add Text to File:
  1. echo "##TextToAdd##" >> ##FileNameToAddTo##
Add Text Above Other Text:
  1. sed -i 's/^##LookForText##/##TextToAdd##\n&/' ##FileNameToAddTo##
Loop:
  1. until [ $Variable -gt 3 ]
  2. do
  3. done