bin: add recursive rgain and own with pwd default
This commit is contained in:
parent
bf05f9f175
commit
900e73c018
|
@ -1,3 +1,3 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Take ownership of the given files recursively
|
# Recursively take ownership of the given files or the current directory
|
||||||
sudo chown -R --preserve-root $USER:$USER "$@"
|
sudo chown -R --preserve-root $USER:$USER "${@:-.}"
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# Recursively add replaygain to the given files or from the current directory
|
||||||
|
r128gain -r --preserve-times 1 "${@:-.}"
|
Loading…
Reference in New Issue