8 lines
113 B
Bash
Executable File
8 lines
113 B
Bash
Executable File
#!/bin/bash
|
|
|
|
FLAC=$(find . -iname "*.flac")
|
|
CUE=$(find . -iname "*.cue")
|
|
|
|
shnsplit -f "$CUE" -t "%n %t" "$FLAC"
|
|
|