mirror of
https://github.com/Linux4Yourself/book.git
synced 2025-02-14 16:09:04 +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
|
||
|
```
|