diff -u bash-4.1/debian/changelog bash-4.1/debian/changelog --- bash-4.1/debian/changelog +++ bash-4.1/debian/changelog @@ -1,3 +1,11 @@ +bash (4.1-1ubuntu3) lucid; urgency=low + + * debian/etc.bash.bashrc: add useful aliases for ll, la, and l, + to better match sysadmin's expectations coming from other + enterprise distros, LP: #545262 + + -- Dustin Kirkland Tue, 23 Mar 2010 10:50:09 -0700 + bash (4.1-1ubuntu2) lucid; urgency=low * Allow special characters in home path in /etc/bash.bashrc diff -u bash-4.1/debian/etc.bash.bashrc bash-4.1/debian/etc.bash.bashrc --- bash-4.1/debian/etc.bash.bashrc +++ bash-4.1/debian/etc.bash.bashrc @@ -60,0 +61,5 @@ + +# add useful alias(es) +alias ll='ls -alF' +alias la='ls -A' +alias l='ls -CF'