mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-12-22 18:52:45 +01:00
bashrc & zshrc: fix aliases pythonX-httpd
Both pointed to `python`, not `python2` and `python3`.
This commit is contained in:
parent
78c6507918
commit
15f48cdf05
4
bashrc
4
bashrc
@ -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
4
zshrc
@ -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*"
|
||||
|
Loading…
Reference in New Issue
Block a user