aboutsummaryrefslogtreecommitdiff
path: root/.local/share/bin/m3uprefix
diff options
context:
space:
mode:
authorLoek Le Blansch <l.leblansch@gmail.com>2020-06-21 22:05:17 +0200
committerLoek Le Blansch <l.leblansch@gmail.com>2020-06-21 22:05:17 +0200
commit47a4416df21412a9184a9b5045233260c1cb80bb (patch)
treebd5463ec7698868ab61d84a1ae0af1ebd4984ce8 /.local/share/bin/m3uprefix
dots v2
Diffstat (limited to '.local/share/bin/m3uprefix')
-rwxr-xr-x.local/share/bin/m3uprefix9
1 files changed, 9 insertions, 0 deletions
diff --git a/.local/share/bin/m3uprefix b/.local/share/bin/m3uprefix
new file mode 100755
index 0000000..c5ab206
--- /dev/null
+++ b/.local/share/bin/m3uprefix
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+fullfile=$1
+
+filename=$(basename -- "$fullfile")
+filename="${filename%.*}"
+
+nvim "+%s/^[^#]/$filename\/&/g" "+wq" "$fullfile"
+