ffr

for future reference
git clone https://git.davidvoz.net/ffr.git
index
logs
tree

Recent Commits
2025-12-10 initial commit David Voznyarskiy

Head Branch
master, 1 commit

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