| 1 | A program to help quickly recall commands and notes.
|
| 2 |
|
| 3 | Below is an example of the ~/.local/share/ffr file
|
| 4 |
|
| 5 | ```
|
| 6 | exiftool
|
| 7 | : read metadata
|
| 8 | #>tar
|
| 9 | tar -czvf archive.tar.gz thing/ file
|
| 10 | : compress
|
| 11 | #>luks #>encrypt #>cryptsetup
|
| 12 | sudo cryptsetup...
|
| 13 | : additional notes
|
| 14 | ```
|
| 15 |
|
| 16 | After compiling, the executible ran without argument prints out every line from the beginning until it reaches a #> or the end of the file.
|
| 17 |
|
| 18 | Running with an argument, tar for example, prints out all the notes below #>tar until it reaches another #> or the end of the file.
|
| 19 |
|
| 20 | Running with the argument luks, encrypt, or cryptsetup, all produces the same result.
|