https://www.cheatsheet.wtf/Nano/
grep
with logic orgrep -e patter1 -e pattern1
- file stats:
stat [file]
anddebugfs
- remove lines matching pattern from file
- how-to-go-to-the-previous-working-directory-in-terminal
cd ~-
on run {input, parameters} | |
tell application "System Events" | |
key code 8 using command down | |
delay 0.1 | |
key code 53 | |
key code 3 using command down | |
key code 9 using command down | |
end tell | |
return input | |
end run |
https://www.cheatsheet.wtf/Nano/
grep
with logic or grep -e patter1 -e pattern1
stat [file]
and debugfs
cd ~-
OQDS literature
([Luvisi’s work](https://www.unisalento.it/scheda-utente/-/people/andrea.luvisi
many info:
tax explanation | FR | DE |
---|---|---|
1st pillar | AVS/AI/APG | AHV / IV / EO |
2nd pillar | PP | BVG (Berufliche Vorsorge) |
family allowance | AF | FZ (Familien zulagen) |
#!/bin/bash | |
# Argument passing and checking | |
while getopts 't:r:' flag; do | |
case "${flag}" in | |
t) TARGETDIR="${OPTARG}" ;; | |
r) REFDIR="${OPTARG}" ;; | |
*) | |
echo "usage: $0 [-t] [-r]" >&2 | |
exit 1 |