Linux Command Cheat Sheet.
System Information:
uname -a
This will return some useful information about the specific flavour of the OS and its kernel.
Shutdown / Restart
shutdown -r now
or:
init 6
This will restart the current system
Dump a SQLite database
sqlite3 /path/to/file
.output /path/to/save/output
.dump
.exit