X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fminimal-shellrc;h=23aa9a2dc881b7d48be375ecbe1320f56f1d3b41;hb=4db20203215091835dbf4aab193a620800f1f25c;hp=68dccdf76f53c7c2dd12ee33952b543b4ee792a5;hpb=e7f84863ff37d54cc2b99e259b4aa2698543a767;p=grml-etc-core.git diff --git a/etc/minimal-shellrc b/etc/minimal-shellrc index 68dccdf..23aa9a2 100644 --- a/etc/minimal-shellrc +++ b/etc/minimal-shellrc @@ -29,9 +29,9 @@ set -o bgnice \ -o trackall # aliases for various command shortcuts -alias ls='ls --color=auto' # we're on grml, so we do have GNU ls. -alias ll='ls -lFb' -alias la='ls -LaFb' +alias ls='command ls --color=auto' # we're on grml, so we do have GNU ls. +alias ll='command ls -l --color=auto' +alias la='command ls -la --color=auto' alias pu='ps -fu $USER' ## Keybindings @@ -43,7 +43,8 @@ if [[ -x $(which infocmp) ]] && [[ -x $(which sed) ]] ; then while read -r line ; do key="${line%=*}" [[ "${key}" != k* ]] && continue - seq="$(print "${line#*=}")" + seq="$(print -r -- "${line#*=}" | sed -e 's,\\\([1-7][0-7]*\),\\0\1,g')" + seq="$(print "${seq}")" case "$key" in key_left) bind "${seq}"='backward-char' ;; key_right) bind "${seq}"='forward-char' ;;