bashrc & zshrc: add alias peminfo (shows information on .pem file).

It seems that autoretab happened too.
This commit is contained in:
Mikaela Suomalainen 2014-06-05 16:36:20 +03:00
parent 404450c50d
commit 901f41a9b4
2 changed files with 45 additions and 39 deletions

3
bashrc
View File

@ -531,6 +531,9 @@ alias reset-matepanel="mate-panel --reset"
alias isodate='date "+%Y-%m-%d %H:%M:%S%z"'
alias isodateu='date -u "+%Y-%m-%d %H:%M:%S%z"'
# Show information on PEM file.
alias peminfo="openssl x509 -text -in"
# Allow custom aliases to be put in .aliases or .bash_aliases .
# .aliases

3
zshrc
View File

@ -500,6 +500,9 @@ alias reset-matepanel="mate-panel --reset"
alias isodate='date "+%Y-%m-%d %H:%M:%S%z"'
alias isodateu='date -u "+%Y-%m-%d %H:%M:%S%z"'
# Show information on PEM file.
alias peminfo="openssl x509 -text -in"
# .aliases
if [ -f ~/.aliases ]; then
source ~/.aliases