diff options
author | Loek Le Blansch <l.leblansch@gmail.com> | 2020-06-21 22:05:17 +0200 |
---|---|---|
committer | Loek Le Blansch <l.leblansch@gmail.com> | 2020-06-21 22:05:17 +0200 |
commit | 47a4416df21412a9184a9b5045233260c1cb80bb (patch) | |
tree | bd5463ec7698868ab61d84a1ae0af1ebd4984ce8 /.local/share/bin/m3uprefix |
dots v2
Diffstat (limited to '.local/share/bin/m3uprefix')
-rwxr-xr-x | .local/share/bin/m3uprefix | 9 |
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" + |