From 0cefe7f6c6cf036861555b0d94ebc89cd1a4bb27 Mon Sep 17 00:00:00 2001 From: Tait Hoyem Date: Wed, 22 Apr 2020 02:38:42 +0000 Subject: [PATCH] Add RFI post --- _posts/2020-04-21-rfi.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 _posts/2020-04-21-rfi.md diff --git a/_posts/2020-04-21-rfi.md b/_posts/2020-04-21-rfi.md new file mode 100644 index 0000000..bdb5c00 --- /dev/null +++ b/_posts/2020-04-21-rfi.md @@ -0,0 +1,22 @@ +--- +title: "rfi: A Simple Linux utility to get a random file from a directory" +layout: post +--- + +I made a [little video](https://lbry.tv/@tait:7/rfi:5) about this script I wrote: + +
+$ rfi
+
+ +This program gets a random file from your current directory +if you do not specify one; +it gets a random file from the specified directory if you give it one like so: + +
+# rfi /etc/wireguard
+
+ +Which is very useful if you want to start a random VPN configuration :) + +The code, comments, etc. are on the [Github](https://github.com/TTWNO/scripts).