194 lines
		
	
	
	
		
			7.2 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			194 lines
		
	
	
	
		
			7.2 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
# These alow me to easily set the file and folder permissions for a wordpress instilation.
 | 
						|
alias folder-perms='find . -type d -not -path "./.git/*" -not -path "./.git" -not -path "./node_modules/*" -not -path "./node_modules" -not -perm 775 -exec chmod 775 {} \;'
 | 
						|
alias file-perms='find . -type f -not -path "./.git/*" -not -path "./.git" -not -path "./node_modules/*" -not -path "./node_modules" -not -perm 664 -exec chmod 664 {} \;'
 | 
						|
alias wp-perms='folder-perms; file-perms'
 | 
						|
alias magentoPerms='cd ${PWD%/public_html*}/public_html;sudo chown -R jonathan:http .; folder-perms; file-perms; chmod +x bin/*; cd -'
 | 
						|
alias upgr='magento setup:upgrade && magento setup:di:compile && magentoPerms'
 | 
						|
                       #
 | 
						|
# Make ls add Indicator#s to file names and colour the output
 | 
						|
alias ls='ls -F --color=auto'
 | 
						|
 | 
						|
# Make tree add indicators and color
 | 
						|
alias tree='tree -F -C'
 | 
						|
 | 
						|
# Make qmv open on 1 column mode
 | 
						|
alias qmv='qmv -f do'
 | 
						|
 | 
						|
alias msfconsole="( systemctl status --no-pager postgresql.service > /dev/null || (echo \"Statring postgres\"; sudo systemctl start postgresql.service) ); ( pass show system/metasploit/database.yaml > database.yaml; sudo msfconsole -y database.yaml; rm database.yaml )"
 | 
						|
 | 
						|
#Start cups
 | 
						|
alias cups='sudo systemctl start org.cups.cupsd.service'
 | 
						|
 | 
						|
#Start network manager
 | 
						|
alias net='sudo systemctl start NetworkManager.service'
 | 
						|
 | 
						|
# Alias lampp because I don't want to clog my PATH
 | 
						|
#alias lampp='/opt/lampp/lampp'
 | 
						|
#alias glampp='gksudo /opt/lampp/manager-linux-x64.run'
 | 
						|
#alias php='/opt/lampp/bin/php'
 | 
						|
#alias php-cgi='/opt/lampp/bin/php-cgi'
 | 
						|
#alias php-config='/opt/lampp/bin/php-config'
 | 
						|
 | 
						|
#Always make all directories necesary
 | 
						|
alias mkdir='mkdir -p'
 | 
						|
 | 
						|
# Shortcut for rewriting wp permalinks
 | 
						|
alias perms='wp rewrite flush'
 | 
						|
 | 
						|
#Clear terminal and try to get moon phase. If it takes longer than .5 seconds then it will show neofetch
 | 
						|
alias cls='clear; timeout 0.5s weather moon || neofetch'
 | 
						|
 | 
						|
#An alias for my standard less configuration
 | 
						|
#I don't set it to lessc because sometimes I don't use this config and I always forget how to ignore an alias
 | 
						|
#alias myless='lessc --clean-css --source-map-basepath=/home/jonathan/Sites/charts/public_html --source-map --autoprefix="last 3 versions, ie >= 9" styles.less styles.min.css'
 | 
						|
alias myless='lessc --clean-css --source-map --autoprefix="last 3 versions, ie >= 11" styles.less styles.min.css'
 | 
						|
 | 
						|
# Git shortcuts
 | 
						|
alias status='git status '
 | 
						|
alias st='git status'
 | 
						|
alias checkout='git checkout'
 | 
						|
alias ch='git checkout'
 | 
						|
alias push='git push '
 | 
						|
alias pull='git pull '
 | 
						|
alias bb='git open'
 | 
						|
alias merge='git merge'
 | 
						|
alias mg='git merge'
 | 
						|
 | 
						|
# Always make grep ouput color
 | 
						|
alias grep="grep --color=auto"
 | 
						|
 | 
						|
# Shortcuts to sites folder
 | 
						|
alias sites="cd ~/Sites"
 | 
						|
alias s="cd ~/Sites"
 | 
						|
 | 
						|
# Shortcuts to documents folder
 | 
						|
alias documents="cd ~/Documents/"
 | 
						|
alias d="cd ~/Documents/"
 | 
						|
 | 
						|
# Shortcuts to hack the box folder
 | 
						|
alias htb="cd ~/Documents/htb/"
 | 
						|
 | 
						|
# Shortcuts to documents folder
 | 
						|
alias db="cd ~/Dropbox/"
 | 
						|
 | 
						|
# Shortcuts to home folder
 | 
						|
alias home="cd ~/"
 | 
						|
alias ~="cd ~/"
 | 
						|
 | 
						|
#Goes up to the public_html folder
 | 
						|
alias ph='cd ${${PWD%/public_html*}%/wiki*}/public_html'
 | 
						|
alias wiki='cd ${${PWD%/public_html*}%/wiki*}/wiki'
 | 
						|
 | 
						|
#Edit wp-config.php using $EDITOR
 | 
						|
alias conf='$EDITOR ${PWD%/public_html*}/public_html/wp-config.php'
 | 
						|
 | 
						|
# Quit the terminal using :q (The same as Vi/Vim)
 | 
						|
alias :q='exit;'
 | 
						|
alias q='exit;'
 | 
						|
 | 
						|
# Not sure why and how but this makes sudo work with my aliases
 | 
						|
alias sudo='sudo '
 | 
						|
 | 
						|
#Make the cal command default to start on Sunday
 | 
						|
alias cal='cal -s'
 | 
						|
 | 
						|
# update the third party wordpress plugins we are mirroring
 | 
						|
alias u3p='update3rdPartyPlugins'
 | 
						|
 | 
						|
# Edit my bashrc
 | 
						|
alias brc='$EDITOR ~/.bashrc'
 | 
						|
 | 
						|
# Edit my vimrc
 | 
						|
alias vrc='$EDITOR ~/.vimrc'
 | 
						|
 | 
						|
# Go to my .vim folder
 | 
						|
alias .v='cd ~/.vim/'
 | 
						|
 | 
						|
alias df='cd ~/.dotfiles'
 | 
						|
 | 
						|
#Make vim start in server mode
 | 
						|
alias vim='vim --servername jab2870'
 | 
						|
 | 
						|
# moon phase
 | 
						|
alias moonphase='weather moon'
 | 
						|
 | 
						|
#Get arch news
 | 
						|
alias archNews='w3m https://www.archlinux.org/ | sed -n "/Latest News/,/Older News/ p" | head -n -1 | less'
 | 
						|
 | 
						|
#Radio Stations
 | 
						|
AUDIO="mpv --input-ipc-server=/tmp/mpvsocket"
 | 
						|
alias radio2="$AUDIO http://a.files.bbci.co.uk/media/live/manifesto/audio/simulcast/hls/uk/sbr_med/llnw/bbc_radio_two.m3u8"
 | 
						|
alias radio4="$AUDIO http://a.files.bbci.co.uk/media/live/manifesto/audio/simulcast/hls/uk/sbr_med/llnw/bbc_radio_fourfm.m3u8"
 | 
						|
alias classic="$AUDIO http://icy-e-bab-04-cr.sharp-stream.com/absoluteradio.mp3"
 | 
						|
alias absolute="$AUDIO 'http://network.absoluteradio.co.uk/core/audio/mp3/live.pls?service=vrbb'"
 | 
						|
alias magic="$AUDIO 'http://www.radiofeeds.co.uk/bauer.pls?station=magicnational.mp3.m3u'"
 | 
						|
 | 
						|
alias bs="curl -s http://cbsg.sourceforge.net/cgi-bin/live | grep -Eo '^<li>.*</li>' | sed -r -e 's/<\/?li>//g' | shuf -n 1 | cowsay"
 | 
						|
 | 
						|
alias jq="jq -C"
 | 
						|
 | 
						|
alias debugBuild='node --inspect-brk /usr/bin/grunt build'
 | 
						|
 | 
						|
#alias lc="colorls -r"
 | 
						|
 | 
						|
#alias open="$TERMINAL & disown"
 | 
						|
 | 
						|
#audiable to mp3
 | 
						|
alias aa2mp3='ffmpeg -f concat -safe 0 -i <(for f in *.aa; do echo "file '"'"'$(pwd)/$f'"'"'";done) output.mp3'
 | 
						|
 | 
						|
# Fix Typos
 | 
						|
alias cim="vim"
 | 
						|
alias vom="vim"
 | 
						|
alias vin="vim"
 | 
						|
alias vi="vim"
 | 
						|
alias v="vim"
 | 
						|
 | 
						|
# Updates time using ntp
 | 
						|
alias updateTime="sudo ntpd -qg"
 | 
						|
 | 
						|
# Keyboard - reset
 | 
						|
# Sometimes, if I turn the screens off, the keyboard resets itself to defaults. Not sure why but this will put my keyboard back to how I like it
 | 
						|
#alias kb="xmodmap ~/.Xmodmap; xset r rate 200 70; xcape"
 | 
						|
alias kb="setxkbmap -layout gb,gb -variant \"colemak,\" -option grp:shifts_toggle; xset r rate 200 70; xinput --list | grep -E 'ErgoDox EZ ErgoDox EZ\s+id' | grep -oE 'id=[0-9]+' | cut -d'=' -f2 | xargs setxkbmap -layout gb -device"
 | 
						|
 | 
						|
alias colemak="setxkbmap -layout gb,gb -variant \"colemak,\" -option grp:shifts_toggle"
 | 
						|
alias qwerty="setxkbmap -layout gb"
 | 
						|
 | 
						|
alias ol="open-local"
 | 
						|
 | 
						|
alias globalip="drill myip.opendns.com @resolver1.opendns.com | sed -n '/ANSWER SECTION/,/AUTHORITY SECTION/ p' | sed -n '2 p' | awk '{print \$5}'"
 | 
						|
 | 
						|
alias ss="tail -n +2 /usr/share/exploitdb/files_exploits.csv | awk -F ',' '{print \$2 \"\t\" \$3 \"\t(\" \$1 \")\"}' | fzf --preview-window=up --preview='echo {} | cut -d\"	\" -f1 | xargs echo \"/usr/share/exploitdb/\" | tr -d \" \" | xargs bat --color=always' | cut -d'	' -f3 | tr -d \"()\" | xargs searchsploit -m"
 | 
						|
 | 
						|
alias ddg="ddgr"
 | 
						|
 | 
						|
alias docker="sudo docker"
 | 
						|
 | 
						|
alias rm="rmtrash"
 | 
						|
alias rmdir="rmdirtrash"
 | 
						|
 | 
						|
alias rs="rofi-reverse-shells"
 | 
						|
 | 
						|
# Armory Aliases
 | 
						|
 | 
						|
ARMORY="$HOME/GitRepos/armoury"
 | 
						|
alias surecheckImport="$JAVA_HOME/bin/java -jar $ARMORY/host_build_reviews/windows/SurecheckImport/SurecheckImport_v0.2.jar "
 | 
						|
 | 
						|
alias rot13="tr 'A-Za-z' 'N-ZA-Mn-za-m'"
 | 
						|
 | 
						|
alias mysql="echo \"You might want to use mycli instead\"; /usr/bin/mysql"
 | 
						|
alias postgres="echo \"You might want to use pgcli instead\"; /usr/bin/postgres"
 | 
						|
 | 
						|
# These aliases are related to projects
 | 
						|
# Make sqlmap put output in the current project folder
 | 
						|
alias sqlmap="[ -L ~/Projects/current ] && sqlmap --output-dir=\"~/Projects/current/sqlmap\""
 | 
						|
# Cd into the current project
 | 
						|
alias pp="[ -L ~/Projects/current ] && cd \$(readlink ~/Projects/current) || cd ~/Projects"
 | 
						|
# Automatically switch project based on current location
 | 
						|
alias pa="project switch --auto"
 | 
						|
# Change project using fzf
 | 
						|
alias pc="project switch --fzf"
 | 
						|
# Create a new project
 | 
						|
alias pn="project new"
 | 
						|
 | 
						|
alias tl="tldr -a | tr ',' '\n' | tr -d ' ' | fzf --preview='tldr {} -m | bat -l markdown --color always' | xargs tldr -m | bat -l markdown --color always"
 |