Tag: bash

Generate Password

Command to generate a random password… openssl rand -base64 6

Watch for Ubuntu 9.10 Launch

This script will run check for ubuntu launch once every 5 mins and let you know if there is an launch.

help command

Use the help command to get information on built in command… help alias

env – Shell/Envionment Variables

Show all the variables in the shell. env

Run a Command if Another Command Succeeds

This will let you run a linux command based on the success of anther command. Note: This will only work…

Remove CVS Information from a Folder

find -name CVS -exec rm -rf {} \; NOTE: Works only with bash