mirror of
https://github.com/Linux4Yourself/book.git
synced 2025-02-11 22:34:42 +08:00
10 lines
200 B
Markdown
10 lines
200 B
Markdown
```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
|
|
```
|