mirror of
https://git.davidovski.xyz/dot.git
synced 2024-08-15 00:43:28 +00:00
5 lines
121 B
Bash
Executable file
5 lines
121 B
Bash
Executable file
#!/bin/sh
|
|
|
|
query=${1}
|
|
cd ~/music
|
|
find . -iname "*$query*" -type f | while read -r line; do mpc insert "${line#./}"; done
|