mirror of
https://github.com/Linux4Yourself/book.git
synced 2025-01-24 06:52:20 +08:00
8 lines
188 B
Bash
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
|