Added alias llog, use sudo -s and mention alias -s pl...
authorMichael Prokop <mika@grml.org>
Mon, 4 Jun 2007 08:45:15 +0000 (10:45 +0200)
committerMichael Prokop <mika@grml.org>
Mon, 4 Jun 2007 08:45:15 +0000 (10:45 +0200)
debian/changelog
etc/skel/.zshrc
etc/zsh/zshrc

index cc579f9..ee6bdb1 100644 (file)
@@ -1,3 +1,12 @@
+grml-etc-core (0.3.8) unstable; urgency=low
+
+  * /etc/zsh/zshrc:
+    - Mention "alias -s pl='perl -S'" within the zsh-mime-setup stuff
+    - Use 'sudo -s' for alias su.
+    - Added alias llog for "$PAGER /var/log/syslog"
+
+ -- Michael Prokop <mika@grml.org>  Mon, 04 Jun 2007 10:43:51 +0200
+
 grml-etc-core (0.3.7) unstable; urgency=low
 
   * /etc/zsh/zshrc and /etc/skel/.zshrc: some more checks whether
index 10f900e..42409f1 100644 (file)
@@ -24,6 +24,7 @@
 # autoloading stuff {{{
 # associate types and extensions (be aware with perl scripts and anwanted behaviour!)
 #  type zsh-mime-setup &>/dev/null || { autoload zsh-mime-setup && zsh-mime-setup }
+#  alias -s pl='perl -S'
 # }}}
 
 # completion system {{{
index 644070f..dfbc02e 100644 (file)
@@ -788,8 +788,9 @@ Enjoy your grml system with the zsh!$reset_color"
       fi
     }
 
-    isgrmlcd && alias su="sudo su"          # change to user root
-    alias tlog="tail -f /var/log/syslog"    # take a look at the syslog
+    isgrmlcd && alias su="sudo -s"          # get a root shell
+    alias llog="$PAGER /var/log/syslog"     # take a look at the syslog
+    alias tlog="tail -f /var/log/syslog"    # follow the syslog
     alias zshskel="source /etc/skel/.zshrc" # source skeleton zshrc
   fi