From bd6f662dfb7d293b8143785a7b28c9bfeccd0ee2 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Mon, 12 Apr 2021 15:21:47 -0500 Subject: Add bash profile, boot script configuration, inputrc and shell configuration to chapter9. --- chapter9/inputrc.sh | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 chapter9/inputrc.sh (limited to 'chapter9/inputrc.sh') diff --git a/chapter9/inputrc.sh b/chapter9/inputrc.sh new file mode 100644 index 0000000..bab2a35 --- /dev/null +++ b/chapter9/inputrc.sh @@ -0,0 +1,45 @@ +#!/bin/bash + +cat > /etc/inputrc << "EOF" +# Begin /etc/inputrc +# Modified by Chris Lynn + +# Allow the command prompt to wrap to the next line +set horizontal-scroll-mode Off + +# Enable 8bit input +set meta-flag On +set input-meta On + +# Turns off 8th bit stripping +set convert-meta Off + +# Keep the 8th bit for display +set output-meta On + +# none, visible or audible +set bell-style none + +# All of the following map the escape sequence of the value +# contained in the 1st argument to the readline specific functions +"\eOd": backward-word +"\eOc": forward-word + +# for linux console +"\e[1~": beginning-of-line +"\e[4~": end-of-line +"\e[5~": beginning-of-history +"\e[6~": end-of-history +"\e[3~": delete-char +"\e[2~": quoted-insert + +# for xterm +"\eOH": beginning-of-line +"\eOF": end-of-line + +# for Konsole +"\e[H": beginning-of-line +"\e[F": end-of-line + +# End /etc/inputrc +EOF -- cgit v1.2.3-54-g00ecf