2011-08-13 12:02:01 +02:00
|
|
|
# Moving between directories:
|
2011-08-12 22:15:14 +02:00
|
|
|
alias ..="cd .."
|
|
|
|
alias .="cd ."
|
2011-08-13 12:02:01 +02:00
|
|
|
|
|
|
|
# As you can see, I don't use/like Vi(m) :)
|
2011-08-12 22:15:14 +02:00
|
|
|
alias editor="nano"
|
2011-08-13 12:02:01 +02:00
|
|
|
alias vi="nano"
|
|
|
|
alias vim="nano"
|
|
|
|
|
|
|
|
# Use htop instead of top, it's better. Requires htop.
|
|
|
|
alias top="htop"
|
|
|
|
|
2011-08-14 18:11:11 +02:00
|
|
|
# Automaticly adds title to Youtube-dl when downloading videos with it. Requires youtube-dl.
|
2011-08-13 12:02:01 +02:00
|
|
|
alias youtube-dl="youtube-dl -t"
|
|
|
|
|
2011-08-14 17:11:55 +02:00
|
|
|
# git specific. This is the command which I use when git asks me to commit something and says that I have modified files, even when I haven't.
|
|
|
|
alias gdrop="git stash && git stash drop"
|
2011-08-14 18:11:11 +02:00
|
|
|
alias gitk="gitg" # Requires gitg . I just think that it looks nicer than gitk.
|
2011-08-14 18:05:48 +02:00
|
|
|
|
|
|
|
# Usually when I run "time", I want to know the current time.
|
|
|
|
alias time="date"
|
2011-08-16 12:24:54 +02:00
|
|
|
|
|
|
|
# If I run nautilus, I want it to open in folder where I am.
|
|
|
|
alias nautilus="nautilus ./"
|
2011-08-19 20:50:11 +02:00
|
|
|
|
2011-08-19 20:53:06 +02:00
|
|
|
# Why I must write "weechat-curses" to start it?
|
|
|
|
alias weechat="weechat-curses"
|
2011-08-20 13:57:33 +02:00
|
|
|
|
|
|
|
#NMAP specific. WARNING: Some things might require root.
|
|
|
|
alias nmap-intense="nmap -T4 -A -v -PE -PS22,25,80 -PA21,23,80,3389 "
|
|
|
|
alias nmap-intense-udp="nmap -sS -sU -T4 -A -v -PE -PS22,25,80 -PA21,23,80,3389 "
|
|
|
|
alias nmap-intense-all-tcp="nmap -p 1-65535 -T4 -A -v -PE -PS22,25,80 -PA21,23,80,3389 "
|
|
|
|
alias nmap-intense-no-ping="nmap -T4 -A -v -PN "
|
|
|
|
alias nmap-ping="nmap -sP -PE -PA21,23,80,3389 "
|
|
|
|
alias nmap-quick="nmap -T4 -F "
|
|
|
|
alias nmap-quick-plus="nmap -sV -T4 -O -F --version-light "
|
|
|
|
alias nmap-traceroute="nmap -sP -PE -PS22,25,80 -PA21,23,80,3389 -PU -PO --traceroute "
|
|
|
|
alias nmap-regular="nmap "
|
|
|
|
alias nmap-comprehensive="nmap -sS -sU -T4 -A -v -PE -PP -PS21,22,23,25,80,113,31339 -PA80,113,443,10042 -PO --script all "
|