dotfiles/.local/bin/scripts/mpq
2024-04-08 13:02:09 +02:00

6 lines
121 B
Bash
Executable file

#!/bin/sh -e
# MPC add file to queue
for arg
do fullpath=$(realpath "$arg")
mpc insert "${fullpath/$MUSIC\//}"
done