6 lines
121 B
Bash
Executable file
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
|