You want real infinite storage space? Here you go: https://github.com/philipl/pifs
- 0 Posts
- 4 Comments
Joined 6 months ago
Cake day: December 28th, 2024
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
JamonBear@sh.itjust.worksto Programming@programming.dev•Am I crazy in thinking that bash is good enough for production?7·6 months agoAgreed.
Also gtfobins is a great resource in addition to shellcheck to try to make secure scripts.
For instance I felt upon a script like this recently:
#!/bin/bash # ... some stuff ... tar -caf archive.tar.bz2 "$@"
Quotes are OK, shellcheck is happy, but, according to gtfobins, you can abuse tar, so running the script like this:
./test.sh /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
ends up spawning an interactive shell…So you can add up binaries insanity on top of bash’s mess.
JamonBear@sh.itjust.worksto Selfhosted@lemmy.world•What’s the newest way of watching YouTube?English381·6 months agoyt-dlp --sponsorblock-remove all <url>
is the way. It turns playlist link into nicely named, curated video files awaiting to played by a regular video player
Assuming you meant CSV, xan is wonderful for this.