autoscale: true
Make each program do one thing well. -- Douglas McIlroy, the inventor of Unix pipes
Expect the output of every program to become the input to another, as yet unknown, program. Don't clutter output with extraneous information. -- Douglas McIlroy, the inventor of Unix pipes
ls
cd
mv
rm
- alarm
- sshvpn
- pomodoro
man
info
help
type
command -v
which
.bashrc
.bash_profile
- alarm
say
osascript
- sshvpn
networksetup
sudo
dtach
- pomodoro
terminal-notifier
dtach
brew install terminal-notifier
brew install dtach
# Default PATH
export PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin
# ~/bin
export PATH=$HOME/bin:$PATH
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
alias grep="grep --color=yes"
alias ls="/bin/ls -Gp"
alias ll="ls -lp"
alias la='ls -lap'
#!/usr/bin/env bash
#min hour mday month wday command
30 7 * * * /Users/michael/talk/bin/alarm
source "common.bash"
. "common.bash"