diff options
author | Bill Nottingham <notting@redhat.com> | 1999-03-15 23:37:59 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-03-15 23:37:59 +0000 |
commit | 47a239e1eb16058887ca50fb223f5ea2ff357e09 (patch) | |
tree | 8510326b05a8560ccfbfed8ed3caa2e0057a9a05 /lang.sh | |
parent | 8e6b0c4329380298c7e26aaa0da6887ae6e988f0 (diff) | |
download | initscripts-47a239e1eb16058887ca50fb223f5ea2ff357e09.tar initscripts-47a239e1eb16058887ca50fb223f5ea2ff357e09.tar.gz initscripts-47a239e1eb16058887ca50fb223f5ea2ff357e09.tar.bz2 initscripts-47a239e1eb16058887ca50fb223f5ea2ff357e09.tar.xz initscripts-47a239e1eb16058887ca50fb223f5ea2ff357e09.zip |
more sysfontacm fixes
Diffstat (limited to 'lang.sh')
-rwxr-xr-x | lang.sh | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -30,6 +30,11 @@ if [ -f /etc/sysconfig/i18n ]; then LESSCHARSET=latin1 INPUTRC=/etc/inputrc export LESSCHARSET INPUTRC + if [ "$TERM" = "linux" ]; then + if ls -l /proc/$$/fd/0 2>/dev/null | grep -- '-> /dev/tty[0-9]*$' >/dev/null 2>&1; then + echo -n -e '\033(K' > /proc/$$/fd/0 + fi + fi ;; esac fi |