As configured in my dotfiles.
start new:
tmux
start new with session name:
As configured in my dotfiles.
start new:
tmux
start new with session name:
#!/bin/bash | |
# this script install itself (npm package), create a tasks/docs.js, install the docs' task dependencies, | |
# and run the gh-pages task. | |
# | |
# Install: | |
# | |
# curl https://raw.github.com/gist/1332036/70f8f3f9b85082569aff7f10773fc40e2fd7388d/bash | sh | |
# | |
# It'll generate documentation based on the likely location of |
#!/bin/bash | |
# Author: Craig Russell | |
# Email: [email protected] | |
# Date: yyyy-mm-dd | |
# Usage: script.sh [-a|--alpha] [-b=val|--beta=val] | |
# Description: | |
# | |
# | |
# |
#!/bin/bash | |
# Description of script | |
# Display usage if no parameters given | |
if [[ -z "$@" ]]; then | |
echo " ${0##*/} <input> - description" | |
exit | |
fi | |
# Required program(s) |