<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -6,19 +6,19 @@ Essentially, the Makefile does what the following suggests.
 
 NEW NEW NEW
 
-To install the new .tcshrc.* files, you should first take a backup
-of your original .tcshrc file, if there is any.
-Then, copy the .tcshrc* files from this directory to your home directory.
+To install the new .bashrc.* files, you should first take a backup
+of your original .bashrc file, if there is any.
+Then, copy the .bashrc* files from this directory to your home directory.
 
-A. To make a backup of your existing .tcshrc file
+A. To make a backup of your existing .bashrc file
 
 % cd
-% cp .tcshrc .tcshrc.ORIGINAL
+% cp .bashrc .bashrc.ORIGINAL
 
-B. To install the new .tcshrc* files
+B. To install the new .bashrc* files
 
-% cd tcshrc-0.x/
-% cp .tcshrc* ~/
+% cd bashrc-0.x/
+% cp .bashrc* ~/
 
 Exit the shell and logon again (or open a new window).
 </diff>
      <filename>INSTALL</filename>
    </modified>
    <modified>
      <diff>@@ -3,77 +3,77 @@
 ## Author: Simos Xenitellis (simos.lists@googlemail.com)
 ##
 
-## This is the makefile, part of the TCSHRC project
-## at http://tcshrc.sourceforge.net
+## This is the makefile, part of the BASHRC project
+## at http://bashrc.sourceforge.net
 
-SHARETCSHRC=&quot;/usr/share/tcshrc&quot;
+SHAREBASHRC=&quot;/usr/share/bashrc&quot;
 BIN=&quot;/usr/bin&quot;
 
 help:
-	@echo &quot;tcshrc&quot; makefile
+	@echo &quot;bashrc&quot; makefile
 	@echo
 	@echo Options available:
 	@echo  &quot;  % make 		display this help&quot;
 	@echo
-	@echo  &quot;  % make backup		take a backup of the original .tcshrc&quot;
-	@echo  &quot;                        (it is saved as .tcshrc.ORIGINAL)&quot;
+	@echo  &quot;  % make backup		take a backup of the original .bashrc&quot;
+	@echo  &quot;                        (it is saved as .bashrc.ORIGINAL)&quot;
 	@echo  &quot;                        you should run this once in the begining&quot;
 	@echo  &quot;                        otherwise you may overwrite the backup&quot;
 	@echo
-	@echo  &quot;  % make install	install the new .tcshrc* files in&quot;
+	@echo  &quot;  % make install	install the new .bashrc* files in&quot;
 	@echo  &quot;                        the current directory&quot;
 	@echo
-	@echo  &quot;  % make systeminstall	install the new .tcshrc* files in&quot;
-	@echo  &quot;                        /usr/local/share/tcshrc, then add&quot;
-	@echo  &quot;                        tcshrc_config to /usr/local/bin/&quot;
+	@echo  &quot;  % make systeminstall	install the new .bashrc* files in&quot;
+	@echo  &quot;                        /usr/local/share/bashrc, then add&quot;
+	@echo  &quot;                        bashrc_config to /usr/local/bin/&quot;
 	@echo
 	@echo &quot;The author does not take any responsibility&quot; 
 	@echo &quot;for the bad use/misuse of this Makefile.&quot;
 	@echo
 
 backup:
-	@test -f $(HOME)/.tcshrc.ORIGINAL &amp;&amp; echo &quot;Backup already exists!&quot; || echo -n &quot;&quot;
-	@test ! -f $(HOME)/.tcshrc || cp $(HOME)/.tcshrc $(HOME)/.tcshrc.ORIGINAL
+	@test -f $(HOME)/.bashrc.ORIGINAL &amp;&amp; echo &quot;Backup already exists!&quot; || echo -n &quot;&quot;
+	@test ! -f $(HOME)/.bashrc || cp $(HOME)/.bashrc $(HOME)/.bashrc.ORIGINAL
 
 install:
 	@echo -n &quot;Copying config files to $(HOME)...&quot;
-	@/bin/cp -f src/tcshrc          $(HOME)/.tcshrc
-	@/bin/cp -f src/tcshrc.alias    $(HOME)/.tcshrc.alias
-	@/bin/cp -f src/tcshrc.bindkey  $(HOME)/.tcshrc.bindkey
-	@/bin/cp -f src/tcshrc.complete $(HOME)/.tcshrc.complete
-	@/bin/cp -f src/tcshrc.hosts    $(HOME)/.tcshrc.hosts
-	@/bin/cp -f src/tcshrc.set      $(HOME)/.tcshrc.set
-	@test -e $(HOME)/.tcshrc.local || echo &quot;You already have a ~/.tcshrc.local. Not overwriting.&quot;
-	@test ! -e $(HOME)/.tcshrc.local || /bin/cp src/tcshrc.local $(HOME)/.tcshrc.local
-	@/bin/cp -u src/tcshrc.local 	$(HOME)/.tcshrc.local
+	@/bin/cp -f src/bashrc          $(HOME)/.bashrc
+	@/bin/cp -f src/bashrc.alias    $(HOME)/.bashrc.alias
+	@/bin/cp -f src/bashrc.bindkey  $(HOME)/.bashrc.bindkey
+	@/bin/cp -f src/bashrc.complete $(HOME)/.bashrc.complete
+	@/bin/cp -f src/bashrc.hosts    $(HOME)/.bashrc.hosts
+	@/bin/cp -f src/bashrc.set      $(HOME)/.bashrc.set
+	@test -e $(HOME)/.bashrc.local || echo &quot;You already have a ~/.bashrc.local. Not overwriting.&quot;
+	@test ! -e $(HOME)/.bashrc.local || /bin/cp src/bashrc.local $(HOME)/.bashrc.local
+	@/bin/cp -u src/bashrc.local 	$(HOME)/.bashrc.local
 	@echo &quot; done.&quot;
 
 systeminstall:
-	@echo -n &quot;Copying config files to $(SHARETCSHRC)...&quot;
-	@/bin/mkdir -p $(SHARETCSHRC)/
-	@/bin/cp -f src/tcshrc          $(SHARETCSHRC)/
-	@/bin/cp -f src/tcshrc.alias    $(SHARETCSHRC)/
-	@/bin/cp -f src/tcshrc.bindkey  $(SHARETCSHRC)/
-	@/bin/cp -f src/tcshrc.complete $(SHARETCSHRC)/
-	@/bin/cp -f src/tcshrc.hosts    $(SHARETCSHRC)/
-	@/bin/cp -f src/tcshrc.set      $(SHARETCSHRC)/
-	@/bin/cp -f src/tcshrc.local    $(SHARETCSHRC)/
-	@/bin/cp -f README              $(SHARETCSHRC)/README.txt
-	@chmod 0444 $(SHARETCSHRC)/tcshrc*
+	@echo -n &quot;Copying config files to $(SHAREBASHRC)...&quot;
+	@/bin/mkdir -p $(SHAREBASHRC)/
+	@/bin/cp -f src/bashrc          $(SHAREBASHRC)/
+	@/bin/cp -f src/bashrc.alias    $(SHAREBASHRC)/
+	@/bin/cp -f src/bashrc.bindkey  $(SHAREBASHRC)/
+	@/bin/cp -f src/bashrc.complete $(SHAREBASHRC)/
+	@/bin/cp -f src/bashrc.hosts    $(SHAREBASHRC)/
+	@/bin/cp -f src/bashrc.set      $(SHAREBASHRC)/
+	@/bin/cp -f src/bashrc.local    $(SHAREBASHRC)/
+	@/bin/cp -f README              $(SHAREBASHRC)/README.txt
+	@chmod 0444 $(SHAREBASHRC)/bashrc*
 	@echo &quot; done.&quot;
-	@echo -n &quot;Copying tcshrc_config to $(BIN)...&quot;
-	@/bin/cp -f tcshrc_config      $(BIN)
-	@chmod 0755 $(BIN)/tcshrc_config
+	@echo -n &quot;Copying bashrc_config to $(BIN)...&quot;
+	@/bin/cp -f bashrc_config      $(BIN)
+	@chmod 0755 $(BIN)/bashrc_config
 	@echo &quot; done.&quot;
 	@echo
-	@echo &quot;You can now use tcshrc_config&quot;
+	@echo &quot;You can now use bashrc_config&quot;
 	@echo &quot;    as root to populate the /etc/skel directory&quot;
 	@echo &quot;    so that each new user will have the config files,&quot;
 	@echo &quot;or&quot;
 	@echo &quot;    as any user to have your own copy of the &quot;
-	@echo &quot;    tcshrc configuration files in your home directory.&quot;
+	@echo &quot;    bashrc configuration files in your home directory.&quot;
 	@echo 
-	@echo &quot;Q: Did you put the dot files in /etc/skel? A: No, use tcshrc_config.&quot;
+	@echo &quot;Q: Did you put the dot files in /etc/skel? A: No, use bashrc_config.&quot;
 
 sex: 
 	@echo &quot;Sorry, it's 'have sex', not 'make sex'.&quot;</diff>
      <filename>Makefile</filename>
    </modified>
    <modified>
      <diff>@@ -24,7 +24,7 @@ the installation options.
 
 Now read the FAQ file on the new functionality and how to use it properly.
 
-This project is based on tcshrc, http://www.github.com/simos/tcshrc/
+This project is based on bashrc, http://www.github.com/simos/bashrc/
 Some things may not appear complete; bear with us while we port the functionality.
 
 WE DID NOT PORT ALL THE CONFIGURATION FILES TO BASHRC. THINGS ARE EXPECTED NOT TO WORK.</diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 
 In no order:
 
-* Match the functionality that tcshrc provides.
+* Match the functionality that bashrc provides.
 
 For more, contact Simos Xenitellis &lt;simos.lists@googlemail.com&gt;</diff>
      <filename>TODO</filename>
    </modified>
    <modified>
      <diff>@@ -1,9 +1,9 @@
 #!/bin/sh
 #
-# tcshrc_config configuration script by Simos Xenitellis &lt;simos.lists@googlemail.com&gt;.
+# bashrc_config configuration script by Simos Xenitellis &lt;simos.lists@googlemail.com&gt;.
 # 
 
-SOURCE=&quot;/usr/share/tcshrc&quot;
+SOURCE=&quot;/usr/share/bashrc&quot;
 ETCSKEL=&quot;/etc/skel&quot;
 
 USER=n
@@ -18,7 +18,7 @@ usage()
     echo &quot;           -s --system   system-wide installation (in /etc/skel)&quot; &gt;&amp;2
     echo &quot;&quot; &gt;&amp;2
     echo &quot;The system-wide installation populates $ETCSKEL&quot; &gt;&amp;2
-    echo &quot;and new accounts created will have the tcsh&quot; &gt;&amp;2
+    echo &quot;and new accounts created will have the bash&quot; &gt;&amp;2
     echo &quot;configuration files by default.&quot; &gt;&amp;2
     echo &quot;&quot; &gt;&amp;2
     exit 0
@@ -53,26 +53,26 @@ fi
 
 if [ &quot;$USER&quot; = &quot;y&quot; ] ; then
 	echo -n &quot;Copying files from ${SOURCE} to ${HOME}...&quot; &gt;&amp;2
-	/bin/cp -f ${VERBOSE} ${SOURCE}/tcshrc 		${HOME}/.tcshrc
-	/bin/cp -f ${VERBOSE} ${SOURCE}/tcshrc.bindkey 	${HOME}/.tcshrc.bindkey
-	/bin/cp -f ${VERBOSE} ${SOURCE}/tcshrc.complete ${HOME}/.tcshrc.complete
-	/bin/cp -f ${VERBOSE} ${SOURCE}/tcshrc.set 	${HOME}/.tcshrc.set
-	/bin/cp -f ${VERBOSE} ${SOURCE}/tcshrc.alias 	${HOME}/.tcshrc.alias
-	/bin/cp -f ${VERBOSE} ${SOURCE}/tcshrc.hosts 	${HOME}/.tcshrc.hosts
-	/bin/cp -u ${VERBOSE} ${SOURCE}/tcshrc.local 	${HOME}/.tcshrc.local
+	/bin/cp -f ${VERBOSE} ${SOURCE}/bashrc 		${HOME}/.bashrc
+	/bin/cp -f ${VERBOSE} ${SOURCE}/bashrc.bindkey 	${HOME}/.bashrc.bindkey
+	/bin/cp -f ${VERBOSE} ${SOURCE}/bashrc.complete ${HOME}/.bashrc.complete
+	/bin/cp -f ${VERBOSE} ${SOURCE}/bashrc.set 	${HOME}/.bashrc.set
+	/bin/cp -f ${VERBOSE} ${SOURCE}/bashrc.alias 	${HOME}/.bashrc.alias
+	/bin/cp -f ${VERBOSE} ${SOURCE}/bashrc.hosts 	${HOME}/.bashrc.hosts
+	/bin/cp -u ${VERBOSE} ${SOURCE}/bashrc.local 	${HOME}/.bashrc.local
 	echo &quot; done.&quot; &gt;&amp;2
 	exit 0
 fi
 
 if [ &quot;$SYSTEM&quot; = &quot;y&quot; ] ; then
 	echo -n &quot;Copying files from ${SOURCE} to ${ETCSKEL}...&quot; &gt;&amp;2
-	/bin/cp -f ${VERBOSE} ${SOURCE}/tcshrc 		${ETCSKEL}/.tcshrc
-	/bin/cp -f ${VERBOSE} ${SOURCE}/tcshrc.bindkey 	${ETCSKEL}/.tcshrc.bindkey
-	/bin/cp -f ${VERBOSE} ${SOURCE}/tcshrc.complete ${ETCSKEL}/.tcshrc.complete
-	/bin/cp -f ${VERBOSE} ${SOURCE}/tcshrc.set 	${ETCSKEL}/.tcshrc.set
-	/bin/cp -f ${VERBOSE} ${SOURCE}/tcshrc.alias 	${ETCSKEL}/.tcshrc.alias
-	/bin/cp -f ${VERBOSE} ${SOURCE}/tcshrc.hosts 	${ETCSKEL}/.tcshrc.hosts
-	/bin/cp -f ${VERBOSE} ${SOURCE}/tcshrc.local 	${ETCSKEL}/.tcshrc.local
+	/bin/cp -f ${VERBOSE} ${SOURCE}/bashrc 		${ETCSKEL}/.bashrc
+	/bin/cp -f ${VERBOSE} ${SOURCE}/bashrc.bindkey 	${ETCSKEL}/.bashrc.bindkey
+	/bin/cp -f ${VERBOSE} ${SOURCE}/bashrc.complete ${ETCSKEL}/.bashrc.complete
+	/bin/cp -f ${VERBOSE} ${SOURCE}/bashrc.set 	${ETCSKEL}/.bashrc.set
+	/bin/cp -f ${VERBOSE} ${SOURCE}/bashrc.alias 	${ETCSKEL}/.bashrc.alias
+	/bin/cp -f ${VERBOSE} ${SOURCE}/bashrc.hosts 	${ETCSKEL}/.bashrc.hosts
+	/bin/cp -f ${VERBOSE} ${SOURCE}/bashrc.local 	${ETCSKEL}/.bashrc.local
 	echo &quot; done.&quot; &gt;&amp;2
 	exit 0
 fi</diff>
      <filename>bashrc_config</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>99992050d79eaa116b1f9e918edb1850c759a597</id>
    </parent>
  </parents>
  <author>
    <name>Simos Xenitellis</name>
    <email>simos.info@gmail.com</email>
  </author>
  <url>http://github.com/simos/bashrc/commit/c74785f0c8bf83903facc2b53bdbc8a2c93b7149</url>
  <id>c74785f0c8bf83903facc2b53bdbc8a2c93b7149</id>
  <committed-date>2009-02-02T14:48:57-08:00</committed-date>
  <authored-date>2009-02-02T14:48:57-08:00</authored-date>
  <message>Removed all occurences of tcsh from top dir</message>
  <tree>d54c0a3faafb171af64247a449fed296755ac038</tree>
  <committer>
    <name>Simos Xenitellis</name>
    <email>simos.info@gmail.com</email>
  </committer>
</commit>
