bashrc & zshrc: fix aliases pythonX-httpd

Both pointed to `python`, not `python2` and `python3`.
This commit is contained in:
Mikaela Suomalainen 2014-07-18 14:45:46 +03:00
parent 78c6507918
commit 15f48cdf05
2 changed files with 4 additions and 4 deletions

4
bashrc
View File

@ -517,8 +517,8 @@ alias osx-airdrop-listenallif="defaults write com.apple.NetworkBrowser BrowseAll
alias osx-set-updatecheck="defaults write /Library/Preferences/com.apple.SoftwareUpdate ScheduleFrequency"
# Simple HTTPd with Python.
alias python2-httpd="python -m SimpleHTTPServer"
alias python3-httpd="python -m http.server"
alias python2-httpd="python2 -m SimpleHTTPServer"
alias python3-httpd="python3 -m http.server"
# Resetting different desktop environments
alias reset-gnome="rm -rf ~/.gnome ~/.gnome2 ~/.gconf ~/.gconfd ~/.metacity ~/.cache ~/.dbus ~/.dmrc ~/.mission-control ~/.thumbnails ~/.config/dconf/user ~/.compiz*"

4
zshrc
View File

@ -487,8 +487,8 @@ alias osx-airdrop-listenallif="defaults write com.apple.NetworkBrowser BrowseAll
alias osx-set-updatecheck="defaults write /Library/Preferences/com.apple.SoftwareUpdate ScheduleFrequency"
# Simple HTTPd with Python.
alias python2-httpd="python -m SimpleHTTPServer"
alias python3-httpd="python -m http.server"
alias python2-httpd="python2 -m SimpleHTTPServer"
alias python3-httpd="python3 -m http.server"
# Resetting different desktop environments
alias reset-gnome="rm -rf ~/.gnome ~/.gnome2 ~/.gconf ~/.gconfd ~/.metacity ~/.cache ~/.dbus ~/.dmrc ~/.mission-control ~/.thumbnails ~/.config/dconf/user ~/.compiz*"