start new:
tmux
start new with session name:
tmux new -s myname
| source :rubygems | |
| gem 'sinatra', '~> 1.3.3' | |
| gem 'json', '~> 1.7.5' | |
| gem 'restforce', '~> 1.0.5' | |
| gem 'thin', '~> 1.5.0' | |
| group :development do | |
| gem 'shotgun', '~> 0.9' | |
| gem 'tunnels', '~> 1.2.2' |
| #!/bin/bash | |
| # bash generate random alphanumeric string | |
| # | |
| # bash generate random 32 character alphanumeric string (upper and lowercase) and | |
| NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) | |
| # bash generate random 32 character alphanumeric string (lowercase only) | |
| cat /dev/urandom | tr -dc 'a-z0-9' | fold -w 32 | head -n 1 |