initial commit
This commit is contained in:
15
chapter2/function_load_default_keyboard
Executable file
15
chapter2/function_load_default_keyboard
Executable file
@@ -0,0 +1,15 @@
|
||||
load_default_keyboard ()
|
||||
{
|
||||
# Loop through each character in the following list and
|
||||
# append each character to the $CHAR_FILE file. This
|
||||
# produces a file with one character on each line.
|
||||
|
||||
for CHAR in 1 2 3 4 5 6 7 8 9 0 q w e r t y u i o \
|
||||
p a s d f g h j k l z x c v b n m \
|
||||
Q W E R T Y U I O P A S D F G H J K L \
|
||||
Z X C V B N M 0 1 2 3 4 5 6 7 8 9
|
||||
do
|
||||
echo "$CHAR" >> $CHAR_FILE
|
||||
done
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user