Scripts/Linux/Functions/others.txt

31 lines
750 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## Others
## Didn't warrent having their own files
## SAV (Sophos Anti-Virus) Command
alias sav-start='sudo service sav-protect start'
alias sav-stop='sudo service sav-protect stop'
## wget Shortcuts
alias get-nordserverlist="wget https://downloads.nordcdn.com/configs/archives/servers/ovpn.zip"
## Hack the Box
alias htb-vpn-starting_point='sudo openvpn ~/htb/vpn/starting_point_NCLtech.ovpn'
alias htb-vpn-lab='sudo openvpn ~/htb/vpn/lab_NCLtech.ovpn'
## Enable aliases to be sudoed
alias sudo='sudo '
## Typo's
alias whosi='whois'
alias gti='git'
alias dc='cd'
## Custom
alias untar='tar xvf'
alias nano='vim'
alias nanoo='/usr/bin/nano'
alias svim='sudo vim'
alias del='shred -f -n 30 -z -u -v'
alias del-quick='shred -f -n 3 -z -u -v'