diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-13 13:18:39 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-13 13:18:39 -0500 |
commit | 455f626a494bbdc20d30c0a4c91876b46303b6aa (patch) | |
tree | c7a2100f092e8a6aee720f57857dc78ff3103a6e /chapter9/shells.sh | |
parent | 137dd3cbadb9dad004cc1610dcea136b347d0015 (diff) | |
parent | 12cd3ceafb35ec95a834f3a2a1ec0a7f701e5699 (diff) |
Merge branch '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 |