ba2e44bedba7c5641dd21fddc9063ec4e7e0dbda
[feisty_meow.git] / scripts / core / common.alias
1 #!/bin/bash
2 ##############
3 # Name   : common.alias
4 # Author : Chris Koeritz
5 # Rights : Copyright (C) 1988-$now by Author
6 ##############
7 # This script is free software; you can modify/redistribute it under the terms
8 # of the GNU General Public License. [ http://www.gnu.org/licenses/gpl.html ]
9 # Feel free to send updates to: [ fred@gruntose.com ]
10 ##############
11
12 # this file provides a list of core aliases for feisty meow codebase.
13
14 ##############
15
16 # call the generated aliases file, if it exists.
17 # we do this first so that our core aliases get a chance to override the aliases
18 # based on scripts.
19
20 if [ -f "$FEISTY_MEOW_LOADING_DOCK/fmc_aliases_for_scripts.sh" ]; then 
21   if [ ! -z "$DEBUG_FEISTY_MEOW" ]; then echo loading script aliases...; fi
22   source "$FEISTY_MEOW_LOADING_DOCK/fmc_aliases_for_scripts.sh"
23   if [ ! -z "$DEBUG_FEISTY_MEOW" ]; then echo done loading script aliases.; fi
24 fi
25
26 ##############
27
28 # repurposes certain commands that feisty meow does a little differently.
29 define_yeti_alias cls='clear_colormap; clear'
30 define_yeti_alias copy='\cp -i -v'
31 define_yeti_alias cp='\cp -i -v'
32 define_yeti_alias del='perl $FEISTY_MEOW_SCRIPTS/files/safedel.pl'
33 define_yeti_alias deltree='perl $FEISTY_MEOW_SCRIPTS/files/safedel.pl'
34 define_yeti_alias df='\df -mh'
35 define_yeti_alias dir='perl $FEISTY_MEOW_SCRIPTS/files/summing_dir.pl'
36 define_yeti_alias du='\du -h'
37 define_yeti_alias erase='perl $FEISTY_MEOW_SCRIPTS/files/safedel.pl'
38 # elaborate replacement for filesystem explorer command, which we have
39 # shortened to "exp".
40 if [ "$OS" != "Windows_NT" ]; then
41   if [ -n "$IS_DARWIN" ]; then
42     # case for mac os x.
43     define_yeti_alias exp='open'
44   elif [ ! -z "$(which nautilus 2>/dev/null)" ]; then
45     # we prefer nautilus if available.
46     define_yeti_alias exp='nautilus'
47   else
48     # last ditch is konqueror browser.
49     define_yeti_alias exp='konqueror'
50   fi
51 else
52   # windows gets routed to our helpful script instead.
53   define_yeti_alias exp="bash $FEISTY_MEOW_SCRIPTS/files/exploder.sh"
54 fi
55 # re-use work we did on 'exp' macro for the longer windows command.
56 define_yeti_alias explorer=exp
57 define_yeti_alias fix_ssh_perms='chmod 700 $HOME/.ssh ; chmod 600 $HOME/.ssh/*'
58 define_yeti_alias halt='sudo shutdown -h now'
59 define_yeti_alias i=inventory
60 define_yeti_alias l='perl $FEISTY_MEOW_SCRIPTS/files/summing_dir.pl'
61 define_yeti_alias ll='ls_dot_add=-a perl $FEISTY_MEOW_SCRIPTS/files/summing_dir.pl'
62 define_yeti_alias ls='ls -HhFC $color_add'
63 define_yeti_alias lsd='ls -hl'
64 define_yeti_alias md='mkdir'
65 define_yeti_alias move='mv -i -v'
66 define_yeti_alias mv='\mv -i -v'
67 define_yeti_alias netcp='rsync -avz'
68 define_yeti_alias notepad='gedit'
69 define_yeti_alias pwd="/bin/pwd|sed -e 's/^\/home\/$USER/~/'"
70 define_yeti_alias rd='perl $FEISTY_MEOW_SCRIPTS/files/zapdirs.pl'
71 define_yeti_alias ren='\mv -v -i'
72 define_yeti_alias rm='perl $FEISTY_MEOW_SCRIPTS/files/safedel.pl'
73 define_yeti_alias rmdir='perl $FEISTY_MEOW_SCRIPTS/files/zapdirs.pl'
74 define_yeti_alias s='echo "##############"'
75 define_yeti_alias path='echo $PATH'
76 define_yeti_alias whence=which
77
78 define_yeti_alias less='lesser'
79 define_yeti_alias mo='lesser'
80 define_yeti_alias more='lesser'
81 define_yeti_alias lesser='bash $FEISTY_MEOW_SCRIPTS/files/lesser.sh'
82
83 ##############
84
85 # some aliases that are just generally nice to have.
86 define_yeti_alias aliases=alias
87 define_yeti_alias calc='galculator'
88 define_yeti_alias cd..='\cd ..'
89 define_yeti_alias cd...='\cd ../..'
90 define_yeti_alias cd....='\cd ../../..'
91 define_yeti_alias cd.....='\cd ../../../..'
92 define_yeti_alias np='gvim'
93 define_yeti_alias up='cd ..'
94
95 ##############
96
97 # some information about the feisty meow codebase itself.
98
99 define_yeti_alias feisty_branch='pushd $FEISTY_MEOW_APEX ; git branch ; popd'
100
101 ##############
102
103 # some important retreads on aliases that provide a sudo-ized version of other scripts.
104
105 define_yeti_alias snarf_linux_config="sudo -E PERLLIB=\$PERLLIB perl \$FEISTY_MEOW_SCRIPTS/archival/snarf_linux_config.pl"
106 define_yeti_alias add_domain="sudo bash \$FEISTY_MEOW_SCRIPTS/system/add_domain.sh"
107 define_yeti_alias remove_domain="sudo bash \$FEISTY_MEOW_SCRIPTS/system/remove_domain.sh"
108 define_yeti_alias add_apache_site="sudo bash \$FEISTY_MEOW_SCRIPTS/system/add_apache_site.sh"
109 define_yeti_alias remove_apache_site="sudo bash \$FEISTY_MEOW_SCRIPTS/system/remove_apache_site.sh"
110
111 #hmmm: some magma intrusions from the fred customizations...
112 define_yeti_alias revamp_cakelampvm="sudo bash \"$FEISTY_MEOW_SCRIPTS/site_avenger/revamp_cakelampvm.sh\""
113
114 ##############
115
116 # extended aliases for meta-operations.
117 define_yeti_alias dvd_rip='vobcopy -m'
118 define_yeti_alias blu_rip='echo "what would this command be?"'
119 define_yeti_alias mplayer='\mplayer -ao arts'
120 define_yeti_alias play='bash $FEISTY_MEOW_SCRIPTS/multimedia/sound_play.sh'
121
122 ##############
123
124 # some really eccentric feisty meow aliases...
125
126 # says goodbye when leaving a shell.
127 define_yeti_alias bye='. $FEISTY_MEOW_SCRIPTS/processes/goodbye.sh'
128 define_yeti_alias cputemp='acpi -t'
129 # makes root user's home directory's permissions right.
130 define_yeti_alias reroot='chown -R root:root /root'
131 # yes, these are really helpful...
132 define_yeti_alias whoareyou='echo -e "Hello, I am a computer named $(hostname)\nand I am very pleased to meet you."'
133 define_yeti_alias whereami='echo whoa dude, try not to think about it...'
134 define_yeti_alias why='echo We all wonder what the point of the universe is at times.  If you figure it all out, please write us.'
135
136 # done with loading up regular aliases now...
137
138 ##############
139
140 # remove the "fredization" or "feistymeowization" macros if they're defined,
141 # which reduces the chance of loading the shell environment twice for users
142 # like root that don't load feisty meow automatically.
143 unalias fredme feistyme &>/dev/null
144
145 ##############
146
147 # set the sentinel alias that says this file was handled.
148 #alias CORE_ALIASES_LOADED=true
149
150 ##############
151