mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-25 12:49:26 +01:00
bashrc & zshrc: add alias peminfo (shows information on .pem file).
It seems that autoretab happened too.
This commit is contained in:
parent
404450c50d
commit
901f41a9b4
47
bashrc
47
bashrc
@ -54,12 +54,12 @@ force_color_prompt=yes
|
|||||||
|
|
||||||
if [ -n "$force_color_prompt" ]; then
|
if [ -n "$force_color_prompt" ]; then
|
||||||
if which tput >&/dev/null && tput setaf 1 >&/dev/null; then
|
if which tput >&/dev/null && tput setaf 1 >&/dev/null; then
|
||||||
# We have color support; assume it's compliant with Ecma-48
|
# We have color support; assume it's compliant with Ecma-48
|
||||||
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
|
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
|
||||||
# a case would tend to support setf rather than setaf.)
|
# a case would tend to support setf rather than setaf.)
|
||||||
color_prompt=yes
|
color_prompt=yes
|
||||||
else
|
else
|
||||||
color_prompt=
|
color_prompt=
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -531,6 +531,9 @@ alias reset-matepanel="mate-panel --reset"
|
|||||||
alias isodate='date "+%Y-%m-%d %H:%M:%S%z"'
|
alias isodate='date "+%Y-%m-%d %H:%M:%S%z"'
|
||||||
alias isodateu='date -u "+%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 .
|
# Allow custom aliases to be put in .aliases or .bash_aliases .
|
||||||
|
|
||||||
# .aliases
|
# .aliases
|
||||||
@ -555,28 +558,28 @@ function cmdpkg() { PACKAGE=$(dpkg -S $(which $1) | cut -d':' -f1); echo "[${PAC
|
|||||||
|
|
||||||
# Down for everyone or just me? Copied from the ultimate bashrc http://goo.gl/qGK5j
|
# Down for everyone or just me? Copied from the ultimate bashrc http://goo.gl/qGK5j
|
||||||
function downforme() {
|
function downforme() {
|
||||||
RED='\e[1;31m'
|
RED='\e[1;31m'
|
||||||
GREEN='\e[1;32m'
|
GREEN='\e[1;32m'
|
||||||
YELLOW='\e[1;33m'
|
YELLOW='\e[1;33m'
|
||||||
NC='\e[0m'
|
NC='\e[0m'
|
||||||
if [ $# = 0 ]
|
if [ $# = 0 ]
|
||||||
then
|
then
|
||||||
echo -e "${YELLOW}usage:${NC} downforme website_url"
|
echo -e "${YELLOW}usage:${NC} downforme website_url"
|
||||||
else
|
else
|
||||||
JUSTYOUARRAY=($(lynx -dump http://downforeveryoneorjustme.com/$1 | grep -o "It's just you"))
|
JUSTYOUARRAY=($(lynx -dump http://downforeveryoneorjustme.com/$1 | grep -o "It's just you"))
|
||||||
if [ ${#JUSTYOUARRAY} != 0 ]
|
if [ ${#JUSTYOUARRAY} != 0 ]
|
||||||
then
|
then
|
||||||
echo -e "${RED}It's just you. \n${NC}$1 is up."
|
echo -e "${RED}It's just you. \n${NC}$1 is up."
|
||||||
else
|
else
|
||||||
echo -e "${GREEN}It's not just you! \n${NC}$1 looks down from here."
|
echo -e "${GREEN}It's not just you! \n${NC}$1 looks down from here."
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# Topt10 commands, copied from the ultimate bashrc http://goo.gl/qGK5j
|
# Topt10 commands, copied from the ultimate bashrc http://goo.gl/qGK5j
|
||||||
function top10() {
|
function top10() {
|
||||||
# copyright 2007 - 2010 Christopher Bratusek
|
# copyright 2007 - 2010 Christopher Bratusek
|
||||||
history | awk '{a[$2]++ } END{for(i in a){print a[i] " " i}}' | sort -rn | head
|
history | awk '{a[$2]++ } END{for(i in a){print a[i] " " i}}' | sort -rn | head
|
||||||
}
|
}
|
||||||
|
|
||||||
# ex command. Copied from bashrc of bioterror ( http://ricecows.org/configs/bash/.bashrc ). Original comment below:
|
# ex command. Copied from bashrc of bioterror ( http://ricecows.org/configs/bash/.bashrc ). Original comment below:
|
||||||
|
37
zshrc
37
zshrc
@ -500,6 +500,9 @@ alias reset-matepanel="mate-panel --reset"
|
|||||||
alias isodate='date "+%Y-%m-%d %H:%M:%S%z"'
|
alias isodate='date "+%Y-%m-%d %H:%M:%S%z"'
|
||||||
alias isodateu='date -u "+%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
|
# .aliases
|
||||||
if [ -f ~/.aliases ]; then
|
if [ -f ~/.aliases ]; then
|
||||||
source ~/.aliases
|
source ~/.aliases
|
||||||
@ -522,28 +525,28 @@ function cmdpkg() { PACKAGE=$(dpkg -S $(which $1) | cut -d':' -f1); echo "[${PAC
|
|||||||
|
|
||||||
# Down for everyone or just me? Copied from the ultimate bashrc http://goo.gl/qGK5j
|
# Down for everyone or just me? Copied from the ultimate bashrc http://goo.gl/qGK5j
|
||||||
function downforme() {
|
function downforme() {
|
||||||
RED='\e[1;31m'
|
RED='\e[1;31m'
|
||||||
GREEN='\e[1;32m'
|
GREEN='\e[1;32m'
|
||||||
YELLOW='\e[1;33m'
|
YELLOW='\e[1;33m'
|
||||||
NC='\e[0m'
|
NC='\e[0m'
|
||||||
if [ $# = 0 ]
|
if [ $# = 0 ]
|
||||||
then
|
then
|
||||||
echo -e "${YELLOW}usage:${NC} downforme website_url"
|
echo -e "${YELLOW}usage:${NC} downforme website_url"
|
||||||
else
|
else
|
||||||
JUSTYOUARRAY=($(lynx -dump http://downforeveryoneorjustme.com/$1 | grep -o "It's just you"))
|
JUSTYOUARRAY=($(lynx -dump http://downforeveryoneorjustme.com/$1 | grep -o "It's just you"))
|
||||||
if [ ${#JUSTYOUARRAY} != 0 ]
|
if [ ${#JUSTYOUARRAY} != 0 ]
|
||||||
then
|
then
|
||||||
echo -e "${RED}It's just you. \n${NC}$1 is up."
|
echo -e "${RED}It's just you. \n${NC}$1 is up."
|
||||||
else
|
else
|
||||||
echo -e "${GREEN}It's not just you! \n${NC}$1 looks down from here."
|
echo -e "${GREEN}It's not just you! \n${NC}$1 looks down from here."
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# Topt10 commands, copied from the ultimate bashrc http://goo.gl/qGK5j
|
# Topt10 commands, copied from the ultimate bashrc http://goo.gl/qGK5j
|
||||||
function top10() {
|
function top10() {
|
||||||
# copyright 2007 - 2010 Christopher Bratusek
|
# copyright 2007 - 2010 Christopher Bratusek
|
||||||
history | awk '{a[$2]++ } END{for(i in a){print a[i] " " i}}' | sort -rn | head
|
history | awk '{a[$2]++ } END{for(i in a){print a[i] " " i}}' | sort -rn | head
|
||||||
}
|
}
|
||||||
|
|
||||||
# ex command. Copied from zshrc of bioterror ( http://ricecows.org/configs/zsh/.zshrc ). Original comment below:
|
# ex command. Copied from zshrc of bioterror ( http://ricecows.org/configs/zsh/.zshrc ). Original comment below:
|
||||||
|
Loading…
Reference in New Issue
Block a user