linux command history file location code example
Example 1: show bash history
history # show all
history | tail -5 # show last 5
history | grep text # search for text
Example 2: browsing history linux file location
$ sqlite3 stylish.sqlite "SELECT * FROM styles;" > ~/Desktop/filename.txt
Example 3: browsing history linux file location
$ sqlite3 stylish.sqlite "SELECT * FROM styles;" | tee ~/Desktop/filename.txt