# Environment should be placed to .environment or .bash_environment (or .bashenv).
# Source before mentioned locations if they exist.
# .environment
if[ -f ~/.environment ];then
source ~/.environment
fi
# .bash_environment
if[ -f ~/.bash_environment ];then
source ~/.bash_environment
fi
# .bashenv (Yes, I know that this is sourced by every bash session even if this isn't here, but I just want to write it).
if[ -f ~/.bashenv ];then
source ~/.bashenv
fi
# Things after this are just examples and should be put to some other file, which issourced above.
# Sets the default editor. I prefer nano to vim and so on, so I want it to be nano. If you don't like terminal based text editors, change "nano" to gedit (Gnome) or Kate (KDE).
#export EDITOR=nano
# Sets user specifig PYTHONPATH. Replace 2.X with your Python version. For example with Python 2.7 you replace X with 7.
# Sets locale. You can get list of locales with "locale -a" command. This should be something which ends to .utf8
#export LC_ALL=fi_FI.utf8
# Sets your timezone. Set in format <Region/City>, or just timezone like UTC.
#export TZ="/usr/share/zoneinfo/Europe/Helsinki"
# Sets PATH. To add another path, add :</path/to/new/path> to string below.
PATH=$PATH
# Sets web-browser.
#export BROWSER=lynx
# "Changes" home directory without root. Uncomment both lines below this.
#export HOME=<path to new home>
#cd
# Uses most as the default pager if you uncomment line below. (You will also get colourful manpages :D).
#export PAGER=most
##### Aliases RJ706I #####
# To get sudo work with aliases.
aliassudo="sudo "
# Moving between directories:
alias ..="cd .."
alias .="cd ."
# Use htop instead of top, it's better. Requires htop.
aliastop="htop"
# Automaticly adds title to Youtube-dl when downloading videos with it. Requires youtube-dl.
alias youtube-dl="youtube-dl -t"
# 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.
aliasgdrop="git stash && git stash drop"
aliasgitk="gitg"# Requires gitg . I just think that it looks nicer than gitk.
# Usually when I run "time", I want to know the current time.
aliastime="date"
# If I run nautilus, I want it to open in folder where I am.
aliasnautilus="nautilus ./"
# Why I must write "weechat-curses" to start it?
aliasweechat="weechat-curses"
#NMAP specific. All nmap things should be run as root, so it's probably best to copy these aliases to root's .bashrc. Things which don't run without root ask for sudo password.
alias nmap-intense="nmap -T4 -A -v -PE -PS22,25,80 -PA21,23,80,3389 "
alias nmap-intense-udp="sudo 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="sudo nmap -sV -T4 -O -F --version-light "
alias nmap-comprehensive="sudo nmap -sS -sU -T4 -A -v -PE -PP -PS21,22,23,25,80,113,31339 -PA80,113,443,10042 -PO --script all "
# Little "safer" scan as connecting to only HTTP and HTTPS ports doesn't look so attacking. Copy-paste to .bash_custom and remove " -p 80,443" if you want to scan all ports which nmap scans by default.
alias nmap-osscan="sudo nmap -p 80,443 -O -v --osscan-guess --fuzzy "
aliasping="nping "
aliasping6="nping -6"
aliasnetcat="ncat "
# TOR (The Onion Router) specific.
aliasusewithtor="proxychains "
aliastorsocks="proxychains "
# This should allow aliases to work with proxychains.
aliasproxychains="proxychains "
# Downloads folder over SSH. Usage: rdownload <host>:<remotefolder> <local_destination> | TIP: use ~/ssh/config to configure hosts.
aliasrdownload="rsync -avz "
# TMUX specific
aliasattach="exec tmux -u attach-session"
aliasdetach="tmux -u detach"
aliastmux="exec tmux -u"
# I am always typoing "aptitude" with my phone...
aliasaptitute="aptitude "
# This is the checkinstall rule which I like to use.
aliascheckinstall="make install "
# The Battle for Wesnoth specific, http://wesnoth.org/
# It seems to be an good idea to have debug logs on terminal with svn version.
aliaswesnoth="wesnoth --debug"
# For copy-pasting directly from somewhere
alias %=" "
# SupyBot specifig. Why to write long command, if you can write short command?
alias supybot-config-reload="killall -HUP supybot "
alias supybot-owner-quit="killall -INT supybot "
# Translating plugins in Limnoria
alias supybot-generate-messages.pot="pygettext −−docstring config.py plugin.py"
# bash specific.
# I think that "theme" is more describing than "prompt".