I often log into the RPi in headless mode using
ssh -Y pi@raspberrypi.local
and, although it is easy to get a graphic interface using vnc or an Xwin, I make a lot of use of text commands in bash.
One of my first experiments with the Raspberry Pi was to establish a serial connection with a Palm Personal Digital Assistant and use its terminal program to access the Pi's login shell at boot up. The PDA provides a screen to display text and a virtual keyboard or graffiti pad to enter commands. The problem is that it lacks cursor keys, needed to recall the previous command, and I didn't like having to retype text on its fiddly interface.
This page is a personal guide to resolving this problem.
Navigating in bash.
Having access to a command history is one of the great features of the shell. You can use the cursor up key to recall the last command, or repeat this until you find the command you want to execute or modify; for most commands this is much quicker than retyping the text. I discovered that shell history can also be navigated using Control key combinations: Ctrl + p will display the previous line. Fortunately, the Palm terminal program features a control icon so I was quickly zipping about my command history. Control codes are useful to learn even if you have cursor navigation on your keyboard. I have learned some new favourites while researching for this blog.
Ctrl + p - display the last line in the history list. Ctrl + n - display the next line in the history list. Ctrl + a - go to the beginning of the line Ctrl + e - go to the end of the line Ctrl + k - cut from the cursor to the end of the line. Ctrl + u - cut from the cursor to the beginning of the line. Ctrl + y - paste content cut with Ctrl+U or Ctrl+K Ctrl + l - clear the screen and redraw the current line Ctrl = i - autocomplete. Ctrl + ii - list autocomplete choices. (cf Tab)
This github page has a good range of navigation tips -
You may already use the history
command to print a numbered list of previous commands and recall a command by using the !
shortcut: !1
for example, would repeat the cd ~
command from the following list.
1 cd ~ #change directory to home 2 ls #list directory 3 cd *1306 #use * wildcard to change directory to Adafruit_Python_SSD1306 4 cd ex*;ls #use * wildcard to change directory to examples; and list contents 5 python3 shapes.py #run shapes example
Use !!
to repeat the last line . So sudo !!
would give you sudo python3 shapes.py
Use !$
to repeat the last arguments. So less !$
would give you less shapes.py
When you have a large history of commands you might find it useful to pipe the output into another command to filter your results.
history | tail #will give you the last ten entries. history | head #will give you the first ten entries. history | grep string #will give you only those entries that contain the provided string.
I find the last option so helpful that I use an alias to help search the history.
alias past='history|grep '
Now however, with my new familiarity of Control codes, I am starting to use Ctrl + r - reverse search history This gives you an interactive search, providing results as you type. Press Ctrl + r again to show an earlier match. Press Ctrl + m (or Enter) to execute the result. Ctrl + j (or cursor right) to select for editing. Ctrl + g (or cursor down) to abandon the search.
Bash (Bourne Again SHell) is the default shell on Raspberry Pi Linux distributions and there are plenty of useful guides to using bash history on the internet. Alternatively, if you run the command
bind -p
it will list all the bash shortcuts; but I suggest that you filter it through grep to narrow the output down to the control codes! Then pipe it to less so that you can scroll through the results.
bind -p | grep C | less
Raspberrypi.org provides a simple guide to Linux Commands. Check their guide for an introduction. Here is an example:
ls
The ls command lists the content of the current directory (or one that is specified). It can be used with the -l flag to display additional information (permissions, owner, group, size, date and timestamp of last edit) about each file and directory in a list format. The -a flag allows you to view files beginning with . (i.e. dotfiles).
ls / #list root directory ls ~ #list home directory ls ../ #list parent directory ls D* #use the * wildcard to filterUse
alias
to provide a personal name for commands, command options or command lines. alias past="history | grep "
Store these in your home directory using file .bash_aliases to preload your aliases each session.alias l='ls -CF' alias la='ls -A' alias ll='ls -l'
You can find many guides to
useful aliases.
Use \ to escape an alias. eg: if alias ls='ls --color=auto'
then \ls
will give the default command.
To help me remember the most useful Control keys I have written a short alias command
alias ctrl='echo "Prev, Next, A<<, E>>, F>, B<, cUt<, Kut>, Yank, cLr, Recall MJG"
You can create your own script files for bash to carry out complex computations.
#!/bin/bash for i in $( ls ); do echo item: $i done
Call the script file using bash scriptName.sh
Here is a script file to control led traffic lights through the GPIO pins. It is built on the work of Gordon Henderson and requires wiringPi.
Functions can be created in script files (eg .bashrc) and can also be created and called from the command line.
hello() { echo "Hello "$1; echo;} hello world
Use screen to run persistant windows from a single ssh connection.
sudo apt-get install screen
Just remember this one command: Ctrl-a ? to display a list of the available screen commands.
After a updating Raspian to Buster I looked to reinstall screen but decided to see if there were any alternatives and discovered tmux, which I much prefer.
I've often wanted to store a directory location so that I could revisit it quickly: enter dirs
with supporting commands pushd
and popd
. Use pushd
as a replacement for cd
, it will change directory but add the new listing to a directory stack. dirs -v
will give a numerated list of the directory stack. You can use popd +N
to pull a listing or cd ~N
to leave the stack unaltered; both methods would change to the directory listing. Remember that cd -
will toggle between the last two directories, whether or not you have built a directory stack.