zshrc: Remove CO and CH aliases
authorFrank Terbeck <ft@bewatermyfriend.org>
Wed, 30 Nov 2011 21:01:33 +0000 (22:01 +0100)
committerMichael Prokop <mika@grml.org>
Tue, 6 Dec 2011 13:50:48 +0000 (14:50 +0100)
Signed-off-by: Frank Terbeck <ft@bewatermyfriend.org>
doc/grmlzshrc.t2t
etc/skel/.zshrc
etc/zsh/zshrc

index ec9d659..96274f1 100644 (file)
@@ -748,12 +748,6 @@ available packages are fetched from the location(s) specified in
 /etc/apt/sources.list. An update should always be performed before an
 upgrade or dist-upgrade; run by sudo, if necessary.
 
-: **CH** (//./configure --help//)
-Lists available compilation options for building program from source.
-
-: **CO** (//./configure//)
-Prepares compilation for building program from source.
-
 : **da** (//du -sch//)
 Prints the summarized disk usage of the arguments as well as a grand total
 in human readable format.
index 22f7e5e..e9a6983 100644 (file)
@@ -178,6 +178,12 @@ fi
 ## get top 10 shell commands:
 #alias top10='print -l ${(o)history%% *} | uniq -c | sort -nr | head -n 10'
 
+## Execute \kbd{./configure}
+#alias CO="./configure"
+
+## Execute \kbd{./configure --help}
+#alias CH="./configure --help"
+
 ## miscellaneous code ##
 
 ## Use a default width of 80 for manpages for more convenient reading
index 94373e1..1c840f0 100644 (file)
@@ -2233,12 +2233,6 @@ alias da='du -sch'
 #a2# Execute \kbd{jobs -l}
 alias j='jobs -l'
 
-# compile stuff
-#a2# Execute \kbd{./configure}
-alias CO="./configure"
-#a2# Execute \kbd{./configure --help}
-alias CH="./configure --help"
-
 # listing stuff
 #a2# Execute \kbd{ls -lSrah}
 alias dir="ls -lSrah"