somewhat silly new command "whoareyou" that makes the computer divulge its name.
authorChris Koeritz <fred@gruntose.com>
Sun, 8 Mar 2015 00:18:11 +0000 (19:18 -0500)
committerChris Koeritz <fred@gruntose.com>
Sun, 8 Mar 2015 00:18:11 +0000 (19:18 -0500)
scripts/core/common.alias
scripts/core/functions.sh

index 85c6e3dd4c514e69a2cc3a0079b912cc44424d95..1a6896b585c239aa1b8a03ea43ff52616673e973 100644 (file)
@@ -89,6 +89,7 @@ alias cputemp='acpi -t'
 # 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.'
 
index 8c308e2e1201299c800642267445abc549f08073..55a45aecb1dad37e8fac1907a1fa1dc5351a1915 100644 (file)
@@ -14,6 +14,7 @@ if [ $? -eq 0 ]; then
 fi
 
 if [ -z "$skip_all" ]; then
+
   if [ ! -z "$SHELL_DEBUG" ]; then
     echo function definitions begin...
   fi
@@ -62,7 +63,7 @@ if [ -z "$skip_all" ]; then
     fi
   }
 
-  # checks the result of the last command that was run, and if it failed,
+  # checks the result of the last command that was run, and if that failed,
   # then this complains and exits from bash.  the function parameters are
   # used as the message to print as a complaint.
   function check_result()