tasty changes to the inventory command, which now has that name instead of just 'i'.
[feisty_meow.git] / scripts / core / common.alias
index cf5cb68a5bc1407c0a8b2b5bfcad73010bd637fd..995916fcea09eb3c99c882eacfd33a01955b1d81 100644 (file)
@@ -9,12 +9,7 @@
 # Feel free to send updates to: [ fred@gruntose.com ]
 ##############
 
-# common aliases for feisty_meow are located here.
-# most of these should work in any bash environment...
-# although some may require more than bash, like the aliases
-# that invoke perl scripts.
-
-##############
+# a list of core aliases for feisty meow codebase.
 
 # repurposes certain commands that feisty meow does a little differently.
 alias cls='clear_colormap; clear'
@@ -23,11 +18,12 @@ alias cp='\cp -i -v '
 alias cvs='perl $FEISTY_MEOW_SCRIPTS/rev_control/cvs_fix.pl'
 alias del='perl $FEISTY_MEOW_SCRIPTS/files/safedel.pl'
 alias deltree='perl $FEISTY_MEOW_SCRIPTS/files/safedel.pl'
-alias df='\df -m'
+alias df='\df -mh'
 alias dir='perl $FEISTY_MEOW_SCRIPTS/files/summing_dir.pl'
 alias du='\du -h'
 alias erase='perl $FEISTY_MEOW_SCRIPTS/files/safedel.pl'
-# elaborate replacement for explorer command, which we shorten to exp.
+# elaborate replacement for filesystem explorer command, which we have
+# shortened to "exp".
 if [ "$OS" != "Windows_NT" ]; then
   if [ -n "$IS_DARWIN" ]; then
     # case for mac os x.
@@ -43,11 +39,14 @@ else
   # windows gets routed to our helpful script instead.
   alias exp="bash $FEISTY_MEOW_SCRIPTS/winders/exploder.sh"
 fi
-# re-use work we did on 'exp' macro for longer command.
+# re-use work we did on 'exp' macro for the longer windows command.
 alias explorer=exp
-alias l='\ls -FC $color_add'
-alias ls='\ls -FC $color_add'
-alias lsd='ls -l'
+alias i=inventory
+alias l='perl $FEISTY_MEOW_SCRIPTS/files/summing_dir.pl'
+alias ll='\ls -hFC $color_add'
+alias ls='perl $FEISTY_MEOW_SCRIPTS/files/summing_dir.pl'
+#='\ls -hFC $color_add'
+alias lsd='ls -hl'
 alias md='mkdir'
 alias more='less'
 alias move='mv -i -v '
@@ -58,6 +57,7 @@ alias rd='perl $FEISTY_MEOW_SCRIPTS/files/zapdirs.pl'
 alias ren='\mv -v -i '
 alias rm='perl $FEISTY_MEOW_SCRIPTS/files/safedel.pl'
 alias rmdir='perl $FEISTY_MEOW_SCRIPTS/files/zapdirs.pl'
+alias s='echo "##############"'
 alias path='echo $PATH'
 alias whence=which
 
@@ -78,6 +78,7 @@ alias up='cd ..'
 
 # extended aliases for meta-operations.
 alias dvd_rip='vobcopy -m'
+alias blu_rip='echo "what would this command be?"'
 alias mplayer='\mplayer -ao arts'
 alias play='bash $FEISTY_MEOW_SCRIPTS/multimedia/sound_play.sh'
 
@@ -88,11 +89,10 @@ alias play='bash $FEISTY_MEOW_SCRIPTS/multimedia/sound_play.sh'
 # says goodbye when leaving a shell.
 alias bye='. $FEISTY_MEOW_SCRIPTS/users/goodbye.sh'
 alias cputemp='acpi -t'
-# redoes fred's set of custom scripts.
-alias recustomize='regenerate >/dev/null; echo "copying custom overrides for fred..."; cpdiff $FEISTY_MEOW_DIR/customizing/fred $FEISTY_MEOW_GENERATED/custom; regenerate'
 # makes root user's home directory's permissions right.
 alias reroot='chown -R root:root /root'
 # yes, these are really helpful...
+alias whoareyou='echo -e "Hello, I am a computer named $(hostname)\nand I'\''m very pleased to meet you."'
 alias whereami='echo whoa dude, try not to think about it...'
 alias why='echo just because.'
 
@@ -116,3 +116,8 @@ unalias fredme &>/dev/null
 
 ##############
 
+# set the sentinel variable that says this file was handled.
+export CORE_ALIASES_LOADED=true
+
+##############
+