2020-07-13 05:40:45 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Misc
|
|
|
|
alias adhoc="ansible --one-line 127.0.0.1 -m"
|
|
|
|
alias ans='adhoc'
|
|
|
|
alias bash="/usr/local/bin/bash"
|
|
|
|
#alias date="gdate"
|
|
|
|
alias away='moro break 10 && coffee'
|
|
|
|
alias afk='away'
|
|
|
|
alias current_year='`echo date +"%Y"`'
|
|
|
|
alias headers='curl -I --compress' # Find out if remote server supports gzip / mod_deflate or not #
|
|
|
|
alias https='http --default-scheme=https' # useful alias stealed from a colleague. http is provided by httpie
|
|
|
|
alias path='echo -e ${PATH//:/\\n}' # Explode and display current PATH
|
|
|
|
alias p='ps -ef | grip ' # Show matching processes. Usage : p <process name>
|
|
|
|
alias root='sudo -i'
|
|
|
|
alias ':q'='exit'
|
|
|
|
alias current_hour='date +"%H:%M"'
|
|
|
|
alias current_time='current_hour'
|
2020-07-13 14:14:35 +00:00
|
|
|
# FIXME : register the alias only if browser is Chrome based (Google Chrome/Brave/etc)
|
|
|
|
alias meditate='browse chrome-extension://onjcfgnjjbnflacfbnjaapcbiecckilk/popup.html#fullscreen'
|
2020-07-13 05:40:45 +00:00
|
|
|
alias runhooks='pre-commit run -a'
|
2020-07-13 14:15:11 +00:00
|
|
|
# https://unix.stackexchange.com/a/205854/220566
|
2020-07-17 12:46:18 +00:00
|
|
|
alias trim='awk "{\$1=\$1};1"'
|
|
|
|
alias trem="awk '{\$1=\$1};1'"
|
2020-07-13 14:15:11 +00:00
|
|
|
# via https://github.com/richinfante/dotfiles/blob/0e1df2d833257e3a3ca2e4fcc8f2f128d52b5d29/dotfiles/.profile_setup/30-aliases.sh
|
2020-07-17 12:46:18 +00:00
|
|
|
alias lowercase='tr "[[:upper:]]" "[[:lower:]]"'
|
|
|
|
alias uppercase='tr "[[:lower:]]" "[[:upper:]]"'
|
2020-07-13 14:15:11 +00:00
|
|
|
alias to_lower='lowercase'
|
|
|
|
alias to_upper='uppercase'
|
2020-07-13 05:40:45 +00:00
|
|
|
alias tryhook='pre-commit try-repo .'
|
|
|
|
alias whatyear='current_year'
|
|
|
|
alias whathour='current_time'
|
|
|
|
alias whattime='whathour'
|