Skip to content

Instantly share code, notes, and snippets.

View seasonedgeek's full-sized avatar
💭
Active Referee. (Semi-retired) Developer.

Tom Stewart seasonedgeek

💭
Active Referee. (Semi-retired) Developer.
View GitHub Profile
@seasonedgeek
seasonedgeek / classpath.sh
Created January 5, 2019 03:51 — forked from jcromartie/classpath.sh
classpath.sh -- build classpaths
#/bin/bash
# strings together all of its arguments into a Java classpath, useful for
# grabbing all of the jars in a directory like so:
# classpath.sh lib/*.jar
#
usage(){
echo "Usage: $0 /path/to/*.jar"
exit 1
}
@seasonedgeek
seasonedgeek / zshrc.sh
Created January 5, 2019 02:34 — forked from kennethreitz/zshrc.sh
My zsh.rc configuration
setopt APPEND_HISTORY
unsetopt BG_NICE # do NOT nice bg commands
setopt CORRECT # command CORRECTION
setopt EXTENDED_HISTORY # puts timestamps in the history
setopt HIST_ALLOW_CLOBBER
setopt HIST_REDUCE_BLANKS
setopt INC_APPEND_HISTORY SHARE_HISTORY
setopt ALL_EXPORT
setopt MENUCOMPLETE