mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2025-01-31 22:54:15 +01:00
bashrc & zshrc: fix supybot aliases.
This commit is contained in:
parent
a502ad5201
commit
f5f62492ec
10
bashrc
10
bashrc
@ -313,13 +313,19 @@ alias wesnoth="wesnoth --debug"
|
||||
alias %=" "
|
||||
alias \#=" "
|
||||
# Supybot specifig. Why to write long command, if you can write short command?
|
||||
alias supybot-config-reload="killall -HUP supybot "
|
||||
alias supybot-owner-quit="killall -INT supybot "
|
||||
alias supybot-config-reload="killall -HUP supybot;killall -HUP limnoria"
|
||||
alias supybot-owner-quit="killall -INT supybot;killall -INT limnoria"
|
||||
# Translating plugins in Limnoria
|
||||
alias supybot-generate-messages.pot="pygettext --docstrings config.py plugin.py"
|
||||
alias supybot-generate-messages.pot-xgettext="xgettext --language=Python config.py plugin.py && mv -f messages.po messages.pot"
|
||||
alias supybot-check-plugin-trans="sandbox/check_trans.py plugins/"
|
||||
alias supybot-generate-messages.pot-mass="find . -type d -exec sh -c '(cd {} && pygettext --docstrings config.py plugin.py)' ';'"
|
||||
alias limnoria-config-reload="supybot-config-reload"
|
||||
alias limnoria-owner-quit="supybot-owner-quit"
|
||||
alias limnoria-generate-messages.pot="supybot-generate-messages.pot"
|
||||
alias limnoria-generate-messages.pot="supybot-generate-messages.pot-xgettext"
|
||||
alias limnoria-check-plugin-trans="supybot-check-plugin-trans"
|
||||
alias limnoria-generate-messages.pot-mass="supybot-generate-messages.pot-mass"
|
||||
|
||||
## -- Start of aliases which are saved from Ubuntu default bashrc. --
|
||||
|
||||
|
10
zshrc
10
zshrc
@ -259,12 +259,18 @@ alias %=" "
|
||||
alias \#=" "
|
||||
|
||||
# Supybot specifig. Why to write long command, if you can write short command?
|
||||
alias supybot-config-reload="killall -HUP supybot "
|
||||
alias supybot-owner-quit="killall -INT supybot "
|
||||
alias supybot-config-reload="killall -HUP supybot;killall -HUP limnoria"
|
||||
alias supybot-owner-quit="killall -INT supybot;killall -INT limnoria"
|
||||
# Translating plugins in Limnoria
|
||||
alias supybot-generate-messages.pot="pygettext --docstrings config.py plugin.py"
|
||||
alias supybot-check-plugin-trans="sandbox/check_trans.py plugins/"
|
||||
alias supybot-generate-messages.pot-mass="find . -type d -exec sh -c '(cd {} && pygettext --docstrings config.py plugin.py)' ';'"
|
||||
alias limnoria-config-reload="supybot-config-reload"
|
||||
alias limnoria-owner-quit="supybot-owner-quit"
|
||||
alias limnoria-generate-messages.pot="supybot-generate-messages.pot"
|
||||
alias limnoria-generate-messages.pot="supybot-generate-messages.pot-xgettext"
|
||||
alias limnoria-check-plugin-trans="supybot-check-plugin-trans"
|
||||
alias limnoria-generate-messages.pot-mass="supybot-generate-messages.pot-mass"
|
||||
|
||||
# ZSH specific.
|
||||
# I think that "theme" is more describing than "prompt".
|
||||
|
Loading…
Reference in New Issue
Block a user