dotfiles/.local/bin/scripts/mpq

7 lines
121 B
Text
Raw Normal View History

2024-04-08 13:02:09 +02:00
#!/bin/sh -e
# MPC add file to queue
for arg
do fullpath=$(realpath "$arg")
mpc insert "${fullpath/$MUSIC\//}"
done