Commit 553c2ea02165a4f5d7ae7c5fa704c5568fc29063

Authored by mj
1 parent 8f67a737b1
Exists in master and in 2 other branches 02-merge, dev

bash: update aliases

bash: OWN HISTORY AGAIN!

Showing 2 changed files with 3 additions and 1 deletions Side-by-side Diff

templates/bash_aliases.sh
... ... @@ -38,6 +38,8 @@ alias n="nano"
38 38 alias p="python"
39 39 alias ports="netstat -tulanp"
40 40  
  41 +alias tt="touch"
  42 +
41 43 # OpenVZ:
42 44 alias vl="vzlist"
43 45 alias ve="vzctl enter"
... ... @@ -44,7 +44,7 @@ export HISTFILESIZE=
44 44 export HISTSIZE=
45 45 export HISTTIMEFORMAT="[%F %T] "
46 46 # Change the file location
47   -export HISTFILE=~/.history
  47 +export HISTFILE=~/.new_bash_history
48 48 # Force prompt to write history after every command
49 49 PROMPT_COMMAND="history -a; $PROMPT_COMMAND"
50 50