27 lines
561 B
Bash
Executable file
27 lines
561 B
Bash
Executable file
#!/bin/bash
|
|
|
|
hyfetch
|
|
|
|
#test
|
|
|
|
# Quality of Life
|
|
#find in history
|
|
alias h="history|grep "
|
|
#search files in current and sub dirs
|
|
alias f="find . |grep "
|
|
#find running processes
|
|
alias p="ps aux |grep "
|
|
#open file
|
|
alias o="open "
|
|
#find large files
|
|
alias find_largest_files="du -h -x -s -- * | sort -r -h | head -20"
|
|
|
|
#User Env Vars
|
|
export DEBEMAIL="support@pogmom.me"
|
|
|
|
#SSH Personal Machines
|
|
alias pogmommy-omen-328p1aa="ssh pogmommy-omen-328p1aa"
|
|
alias pogmommy-apple-a2337="ssh pogmommy-apple-a2337"
|
|
alias pogmommy-apple-a2337-vpn="ssh pogmommy-apple-a2337-vpn"
|
|
|
|
|