diff options
author | Nicolae Vartolomei <nvartolomei@gmail.com> | 2012-08-07 15:29:08 +0300 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-08-07 14:31:21 +0200 |
commit | aff769fd75225d8f2e481185a71d5e05b76002dc (patch) | |
tree | 96d597894eac933bbe3a991054b27277ef20ae49 /.functions | |
parent | 378fa5bec44d3b93b3b170e6f27f5e89c277e2e2 (diff) | |
download | dotfiles-aff769fd75225d8f2e481185a71d5e05b76002dc.tar.gz dotfiles-aff769fd75225d8f2e481185a71d5e05b76002dc.tar.bz2 dotfiles-aff769fd75225d8f2e481185a71d5e05b76002dc.zip |
.bash_profile: Update `killall` Tab completion for OS X 10.8
Diffstat (limited to '.functions')
-rw-r--r-- | .functions | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ function server() { function phpserver() { local port="${1:-4000}" local ip=$(ipconfig getifaddr en1) - sleep 1 && open "http://${ip}:${port}" & + sleep 1 && open "http://${ip}:${port}/" & php -S "${ip}:${port}" } |