This commit is contained in:
Mid Favila 2022-01-26 14:35:48 -04:00
parent 8c2ac0ddae
commit 19a61078d6
3 changed files with 8 additions and 1 deletions

1
README
View File

@ -13,3 +13,4 @@ netsh - an old experiment that serves as a simple TUI for managing network inter
plumber - one of my more sophisticated scripts; plumber creates pipes between programs based on what sort of input it receives, and handles errors (somewhat) intelligently
bach - the Batch Audio Conversion Helper uses FFMPEG to convert large numbers of files at once
invcli - Invidious CLI client. I hacked this together in like an hour and a half, so it's kind of rough at the moment, but it does work!
rand - One-liner that generates pseudorandom numbers using dd and od.

3
TODO
View File

@ -1,3 +1,6 @@
General
-Move useful functions like rand() to their own files, to be used like libraries.
Links
-Figure out a way to convert bookmarks to a textfile on exit and from the same on start, to facilitate sharing between machines

3
rand Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh -e
dd bs=2 count=1 if=/dev/random 2>> /dev/null | od - | sed -ne 's& *& &gp' | cut -d ' ' -f2