From: Frank Terbeck Date: Wed, 30 Nov 2011 21:01:33 +0000 (+0100) Subject: zshrc: Remove CO and CH aliases X-Git-Tag: v0.5.0~13 X-Git-Url: http://git.grml.org/?p=grml-etc-core.git;a=commitdiff_plain;h=4c988207d6fdbe434bd5554ccd27a1f4be5b5a1c zshrc: Remove CO and CH aliases Signed-off-by: Frank Terbeck --- diff --git a/doc/grmlzshrc.t2t b/doc/grmlzshrc.t2t index ec9d659..96274f1 100644 --- a/doc/grmlzshrc.t2t +++ b/doc/grmlzshrc.t2t @@ -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. diff --git a/etc/skel/.zshrc b/etc/skel/.zshrc index 22f7e5e..e9a6983 100644 --- a/etc/skel/.zshrc +++ b/etc/skel/.zshrc @@ -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 diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 94373e1..1c840f0 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -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"