diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-12 15:21:47 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-12 15:21:47 -0500 |
commit | bd6f662dfb7d293b8143785a7b28c9bfeccd0ee2 (patch) | |
tree | 7dc0e09c16606322d2cfa686d2a7ee2bc92b3341 /chapter9/shells.sh | |
parent | 7215575834db88849e6ba78de8d179b4a80bdeb6 (diff) |
Add bash profile, boot script configuration, inputrc and shell configuration to chapter9.
Diffstat (limited to 'chapter9/shells.sh')
-rw-r--r-- | chapter9/shells.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/chapter9/shells.sh b/chapter9/shells.sh new file mode 100644 index 0000000..d94254c --- /dev/null +++ b/chapter9/shells.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +cat > /etc/shells << "EOF" +# Begin /etc/shells + +/bin/sh +/bin/bash + +# End /etc/shells +EOF |