3 lines
178 B
Bash
Executable file
3 lines
178 B
Bash
Executable file
#!/bin/sh
|
|
# Recursively add replaygain to the given files or from the current directory
|
|
r128gain $(test -f "$1" || echo '--recursive') --skip-tagged --preserve-times 1 "${@:-.}"
|