Bash

From DWIKI

Tips and tricks

get first character of a string

FIRST=${STRING:0:1}

==check if var contains substring

 test "${s#*foo}" != "${s}"

move cursor

^b move back 1 char
^f move forward 1 char
alt-b move back 1 word
alf-f move forward 1 word