From 557963342697ab57c0af379a39a5e87ade7ab3cc Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sat, 28 Jan 2012 14:57:04 -0500 Subject: [PATCH] fixed a couple aliases missing the keyword, which is an understandable problem after switching the structure all around. cleaned up some minor things in others. --- .../examples/custom_overrides/fred/c_common_aliases.txt | 8 +++++--- scripts/examples/custom_overrides/fred/c_variables.sh | 1 - scripts/examples/custom_overrides/fred/java_profile.sh | 5 +++++ 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/scripts/examples/custom_overrides/fred/c_common_aliases.txt b/scripts/examples/custom_overrides/fred/c_common_aliases.txt index 83c32e35..94fbaf1a 100644 --- a/scripts/examples/custom_overrides/fred/c_common_aliases.txt +++ b/scripts/examples/custom_overrides/fred/c_common_aliases.txt @@ -1,8 +1,10 @@ -moo='check_mount /z/stuffing ; check_mount /z/walrus ; check_mount /z/chunky ' -unmoo='umount /z/stuffing ; umount /z/walrus ; umount /z/chunky ' +# some aliases that i don't expect very many people to ever want. they are +# based on some of the mount configurations available at home or abroad. -refred='(chown -R fred:fred /home/fred /usr/local/games /home/archives /fatty /clutterato /var/spool/mail/fred ; normal_perm /var/log )' +alias moo='check_mount /z/stuffing ; check_mount /z/walrus ; check_mount /z/chunky ' +alias unmoo='umount /z/stuffing ; umount /z/walrus ; umount /z/chunky ' +alias refred='(chown -R fred:fred /home/fred /usr/local/games /home/archives /fatty /clutterato /var/spool/mail/fred ; normal_perm /var/log )' diff --git a/scripts/examples/custom_overrides/fred/c_variables.sh b/scripts/examples/custom_overrides/fred/c_variables.sh index 022f1cb7..2b196b89 100644 --- a/scripts/examples/custom_overrides/fred/c_variables.sh +++ b/scripts/examples/custom_overrides/fred/c_variables.sh @@ -1,4 +1,3 @@ -#!/bin/bash # these are my personal overrides. --fred. diff --git a/scripts/examples/custom_overrides/fred/java_profile.sh b/scripts/examples/custom_overrides/fred/java_profile.sh index 7186b446..9ef44804 100644 --- a/scripts/examples/custom_overrides/fred/java_profile.sh +++ b/scripts/examples/custom_overrides/fred/java_profile.sh @@ -1,4 +1,7 @@ #!/bin/bash + +# Author: Chris Koeritz + # this script tries to intuit where java is installed on this machine. ############################ @@ -97,4 +100,6 @@ if [ ! -z "$ECLIPSE_DIR" ]; then export PATH=$ECLIPSE_DIR:$PATH fi +############################ + -- 2.34.1