updated bashrc examples
authorChris Koeritz <fred@gruntose.com>
Sat, 10 Dec 2016 06:21:07 +0000 (01:21 -0500)
committerChris Koeritz <fred@gruntose.com>
Sat, 10 Dec 2016 06:21:07 +0000 (01:21 -0500)
now includes the full file needed for normal and root users.

feisty_inits/dot.bashrc-normal-user
feisty_inits/dot.bashrc-root

index 616cfe04e66d31c8405a6c99c96578a86b78762e..ea0c9c5ecfddb2fbcbc158acb3043f8440e65fa0 100644 (file)
@@ -1,5 +1,5 @@
 
-# when added to ~/.bashrc, this code initializes the feisty meow environment
+# example ~/.bashrc: this code initializes the feisty meow environment
 # for "normal" users (not intended for the root user).
 
 ##############
index fadd383c4a40619b014d91c42766069f07d6ce3f..8ae38a5a70d252948c898336b0050e2a6a4a0475 100644 (file)
@@ -1,4 +1,26 @@
 
+# example ~/.bashrc: this code provides a macro to initialize the
+# feisty meow environment for the "root" user.
+
+##############
+
+# If not running interactively, don't do anything
+case $- in
+    *i*) ;;
+      *) return;;
+esac
+
+##############
+
+# drag in the default version of this file.  this may not be needed if your
+# .bashrc script already has substantial code or already does this.
+source /etc/bash.bashrc
+
+##############
+
+# change this to your name...
+export NAME='Frunkooleon Q. GrendervaspPleaseChangeThis'
+
 ##############
 
 # the "fredme" macro enables the feisty_meow environment.