summaryrefslogtreecommitdiffstats
path: root/.local/bin/makenoextpng
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/makenoextpng')
-rwxr-xr-x.local/bin/makenoextpng10
1 files changed, 10 insertions, 0 deletions
diff --git a/.local/bin/makenoextpng b/.local/bin/makenoextpng
new file mode 100755
index 0000000..c6049fa
--- /dev/null
+++ b/.local/bin/makenoextpng
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+#Description: Appends a png extension to all files without an extension.
+
+#Axioms:
+
+#Dependencies: https://packages.debian.org/stretch/xargs
+
+
+find . -type f ! -name "*.*" -print0 | xargs --null -I{} mv {} {}.png