282 lines
7.5 KiB
Bash
282 lines
7.5 KiB
Bash
# If ls has `--color` support
|
|
if ls --color > /dev/null 2>&1; then
|
|
alias ls="ls --color=auto"
|
|
fi
|
|
|
|
# Main aliases
|
|
alias ll="ls -l"
|
|
alias la="ls -a"
|
|
alias :q="exit"
|
|
alias :wq="exit"
|
|
alias cls=clear
|
|
alias bashreload="source ~/.bashrc"
|
|
alias wg-easykeys="wg genkey | tee >(wg pubkey)"
|
|
alias nvim-tmp="nvim $(mktemp)"
|
|
alias flush-dns="sudo systemd-resolve --flush-caches"
|
|
alias showsizes="du -h --max-depth=1"
|
|
alias lsgrep="ls | grep"
|
|
alias sheridan-rdp='firefox --new-window "ext+container:name=College&url=https://client.wvd.microsoft.com/arm/webclient/index.html"'
|
|
alias git-diff-nvim="git diff | nvim -R -d -c 'set filetype=diff' -"
|
|
alias yk-totp="ykman oath accounts code"
|
|
alias flush-dns-cache="sudo systemd-resolve --flush-caches"
|
|
alias which-ls="ls -la $(which ls)"
|
|
alias rdns="dig +short -x"
|
|
alias ufw-status="sudo ufw status numbered"
|
|
alias genuuid="python -c 'import uuid; print(uuid.uuid4())'"
|
|
alias clipboard="xclip -selection clipboard"
|
|
alias filesize="du -hs"
|
|
alias arp-watch="sudo tcpdump -nn -tt -q \"arp and arp[6:2] == 2\""
|
|
|
|
# WHOIS macros
|
|
alias whois-afrinic="whois -h whois.afrinic.net"
|
|
alias whois-altdb="whois -h whois.altdb.net"
|
|
alias whois-aoltw="whois -h whois.aoltw.net"
|
|
alias whois-ampr="whois -h whois.ampr.org"
|
|
alias whois-apnic="whois -h whois.apnic.net"
|
|
alias whois-arin="whois -h rr.arin.net"
|
|
alias whois-bell="whois -h whois.in.bell.ca"
|
|
alias whois-bboi="whois -h irr.bboi.net"
|
|
alias whois-bgptools="whois -h bgp.tools"
|
|
alias whois-canarie="whois -h whois.canarie.ca"
|
|
alias whois-epoch="whois -h whois.epoch.net"
|
|
alias whois-jpirr="whois -h jpirr.nic.ad.jp"
|
|
alias whois-lacnic="whois -h irr.lacnic.net"
|
|
alias whois-level3="whois -h rr.level3.net"
|
|
alias whois-nestegg="whois -h whois.nestegg.net"
|
|
alias whois-panix="whois -h rrdb.access.net"
|
|
alias whois-radb="whois -h whois.radb.net"
|
|
alias whois-reach="whois -h rr.telstraglobal.net"
|
|
alias whois-ripe="whois -h whois.ripe.net"
|
|
|
|
# Neo-aliases
|
|
if [ -x "$(command -v nvim)" ]; then alias vim="nvim"; fi
|
|
if [ -x "$(command -v neomutt)" ]; then alias mutt="neomutt"; fi
|
|
|
|
# If python exists, configure an alias for python3 if needed
|
|
if [ -x "$(command -v python)" ]; then
|
|
# If `python --version` starts with `Python 3`
|
|
if [[ $(python --version) == Python\ 3* ]]; then
|
|
# If we don't have python3 in our path
|
|
if ! command -v python3 &> /dev/null; then
|
|
# Make an alias for python3
|
|
alias python3=python
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
# If we are running in a studio environment
|
|
if [ ! -z "$EWP_IN_GURU_ENVIRONMENT" ]; then
|
|
alias guru_launcher3="python $GURU_PYTHON_ROOT/env/guru_launcher3.py"
|
|
alias cd-dev="cd /s/development/epratten"
|
|
fi
|
|
|
|
# Kill via pgrep
|
|
nkill() {
|
|
if [ $# != 1 ]; then
|
|
echo "Usage: nkill <name>"
|
|
else
|
|
kill -9 $(pgrep $1)
|
|
fi
|
|
}
|
|
|
|
# Makes a directory, then moves into it
|
|
mkcd() {
|
|
if [ $# != 1 ]; then
|
|
echo "Usage: mkcd <dir>"
|
|
else
|
|
mkdir -p $1 && cd $1
|
|
fi
|
|
}
|
|
|
|
# Sources a .env
|
|
source_env() {
|
|
env=${1:-.env}
|
|
[ ! -f "${env}" ] && { echo "Env file ${env} doesn't exist"; return 1; }
|
|
eval $(sed -e '/^\s*$/d' -e '/^\s*#/d' -e 's/=/="/' -e 's/$/"/' -e 's/^/export /' "${env}")
|
|
}
|
|
|
|
# Auto-extract anything
|
|
extract() {
|
|
if [ -f $1 ]; then
|
|
case $1 in
|
|
*.tar.bz2) tar xvjf $1 ;;
|
|
*.tar.gz) tar xvzf $1 ;;
|
|
*.bz2) bunzip2 $1 ;;
|
|
*.rar) unrar x $1 ;;
|
|
*.gz) gunzip $1 ;;
|
|
*.tar) tar xvf $1 ;;
|
|
*.tbz2) tar xvjf $1 ;;
|
|
*.tgz) tar xvzf $1 ;;
|
|
*.zip) unzip $1 ;;
|
|
*.Z) uncompress $1 ;;
|
|
*.7z) 7z x $1 ;;
|
|
*.tar.zst) tar --use-compress-program=unzstd -xvf $1 ;;
|
|
*.zst) zstd -d $1 ;;
|
|
*) echo "don't know how to extract '$1'..." ;;
|
|
esac
|
|
else
|
|
echo "'$1' is not a valid file!"
|
|
fi
|
|
}
|
|
|
|
# Generate a password
|
|
genpass() {
|
|
if [ $# != 1 ]; then
|
|
echo "Usage: genpass <len>"
|
|
else
|
|
echo $(openssl rand -base64 $1 | tr -d "\n")
|
|
fi
|
|
|
|
}
|
|
|
|
# Sign a file with an SSH key
|
|
ssh-sign(){
|
|
if [ $# != 2 ]; then
|
|
echo "Usage: ssh-sign <key_file> <file>"
|
|
else
|
|
if [ -f $2 ]; then
|
|
cat $2 | ssh-keygen -Y sign -f $1 -n file -
|
|
else
|
|
>&2 echo "File not found: $2"
|
|
fi
|
|
fi
|
|
}
|
|
|
|
# Verify a file, using the ~/.ssh/allowed_signers file
|
|
ssh-verify(){
|
|
if [ $# != 3 ]; then
|
|
echo "Usage: ssh-verify <author> <sigfile> <file>"
|
|
else
|
|
ssh-keygen -Y verify -f ~/.ssh/allowed_signers -n file -I $1 -s $2 < $3
|
|
fi
|
|
}
|
|
|
|
# Fully restart a wireguard link
|
|
wg-restart() {
|
|
if [ $# != 1 ]; then
|
|
echo "Usage: wg-restart <interface>"
|
|
else
|
|
wg-quick down $1 || true;
|
|
wg-quick up $1
|
|
fi
|
|
}
|
|
|
|
# Reload a wireguard link without stopping it
|
|
wg-reload() {
|
|
if [ $# != 1 ]; then
|
|
echo "Usage: wg-reload <interface>"
|
|
else
|
|
sudo wg syncconf $1 <(sudo wg-quick strip $1)
|
|
fi
|
|
}
|
|
|
|
# Edit a wireguard config file
|
|
wg-edit() {
|
|
if [ $# != 1 ]; then
|
|
echo "Usage: wg-edit <interface>"
|
|
else
|
|
sudo nvim /etc/wireguard/$1.conf
|
|
fi
|
|
}
|
|
|
|
# Print a wireguard config file
|
|
wg-cat() {
|
|
if [ $# != 1 ]; then
|
|
echo "Usage: wg-cat <interface>"
|
|
else
|
|
sudo cat /etc/wireguard/$1.conf
|
|
fi
|
|
}
|
|
|
|
# Updates ewconfig
|
|
ewconfig-pull() {
|
|
cwd=$(pwd)
|
|
cd ~/.config/ewconfig
|
|
git pull ewp master
|
|
cd $cwd
|
|
}
|
|
|
|
# Updates the ewconfig on machines that don't have git
|
|
ewconfig-pull-zip(){
|
|
cwd=$(pwd)
|
|
# If $EWCONFIG_ROOT/.git exists, don't let the user run this
|
|
if [ -d $EWCONFIG_ROOT/.git ]; then
|
|
echo "You can't run this command when ~/.config/ewconfig is a git repo!"
|
|
return 1
|
|
fi
|
|
|
|
# Download the latest zip
|
|
cd ~/Downloads
|
|
curl -L https://ewp.fyi/config.zip -o ewconfig.zip
|
|
rm -rf ~/.config/ewconfig
|
|
unzip ewconfig.zip
|
|
mv ewconfig-master ~/.config/ewconfig
|
|
rm ewconfig.zip
|
|
|
|
# Return to the original directory
|
|
cd $cwd
|
|
}
|
|
|
|
# Temporairly hop to the ewconfig directory to run a command
|
|
ewconfig-run() {
|
|
cwd=$(pwd)
|
|
cd ~/.config/ewconfig
|
|
$@
|
|
cd $cwd
|
|
}
|
|
|
|
# Re-run the install script from anywhere
|
|
ewconfig-reinstall() {
|
|
# Require an argument (linux, windows)
|
|
if [ $# != 1 ]; then
|
|
echo "Usage: ewconfig-reinstall <platform>"
|
|
return 1
|
|
fi
|
|
|
|
# Execute through ewconfig-run
|
|
ewconfig-run sh ./install-$1.sh
|
|
}
|
|
|
|
# Define a function to emulate gh
|
|
gh-emulated() {
|
|
if [ $# != 3 ]; then
|
|
echo "You don't have gh installed. Emulating its functionality."
|
|
echo "Usage: gh repo clone <user>/<repo>"
|
|
else
|
|
git clone https://github.com/$3
|
|
fi
|
|
}
|
|
|
|
# Only if `gh` is not installed
|
|
if ! command -v gh &> /dev/null; then
|
|
alias gh=gh-emulated
|
|
fi
|
|
|
|
# Convert an SVG to a PNG
|
|
svg2png() {
|
|
if [ $# != 1 ]; then
|
|
echo "Usage: svg2png <file>"
|
|
else
|
|
inkscape -z "$1.png" "$1" --export-type=png
|
|
fi
|
|
}
|
|
|
|
# Get the AS Path to an IP
|
|
aspath() {
|
|
# There must be at least one argument (cab be more)
|
|
if [ $# -lt 1 ]; then
|
|
echo "Usage: aspath <ip> [args]"
|
|
else
|
|
mtr $@ -z -rw -c1 -G0.25 | tail -n +3 | awk '{print $2}' | grep -v AS\?\?\? | uniq | cut -c 3- | tr '\n' ',' | sed 's/,/ -> /g' | rev | cut -c 5- | rev
|
|
fi
|
|
}
|
|
|
|
# Get the AS Path to an IP (include unknown hops)
|
|
aspath-long() {
|
|
# There must be at least one argument (cab be more)
|
|
if [ $# -lt 1 ]; then
|
|
echo "Usage: aspath-long <ip> [args]"
|
|
else
|
|
mtr $@ -z -rw -c1 -G0.25 | tail -n +3 | awk '{print $2}' | uniq | cut -c 3- | tr '\n' ',' | sed 's/,/ -> /g' | rev | cut -c 5- | rev
|
|
fi
|
|
} |