Lx4U-book/docs/scripts/inputrc.sh
2021-11-04 19:24:31 +03:00

8 lines
188 B
Bash

cat > /etc/profile.d/readline.sh << "EOF"
# Setup the INPUTRC environment variable.
if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ] ; then
INPUTRC=/etc/inputrc
fi
export INPUTRC
EOF