Session: https://fosdem.org/2026/schedule/event/7WV8WX-tupperterm-bof/
πΈ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Bash | |
| ffsend h | tail -n +2 | fzf -m --accept-nth=2 | xargs -I {} ffsend delete {} | |
| # Powershell | |
| # ffsend history ` | |
| # | Select-Object -Skip 1 ` | |
| # | fzf --multi --accept-nth=2 ` | |
| # | ForEach-Object { ffsend delete $_ } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # short version | |
| fd -L -e sh . ~/.config/local/bin | fzf --preview 'bat -f {}' --bind 'enter:become(nvim {})' | |
| # with verbose args version | |
| fd --follow --extension sh . ~/.config/local/bin | fzf --preview 'bat --color=always {}' --bind 'enter:become(nvim {})' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| while true; do | |
| glow file.md # or any other command | |
| inotifywait -e modify file.md # replace 'file.md' with whatever file you are editing | |
| clear | |
| done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| jq --raw-input --slurp ' | |
| split("\n") | | |
| map(select(length > 0)) | | |
| (.[0] | split(",")) as $keys | | |
| .[1:] | | |
| map(split(",") | [ $keys, . ] | transpose | map({(.[0]): .[1]}) | add) | |
| ' ./input.csv |