bin: add recursive rgain and own with pwd default

This commit is contained in:
xeruf 2021-12-05 20:48:46 +01:00
parent bf05f9f175
commit 900e73c018
2 changed files with 5 additions and 2 deletions

View File

@ -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 "${@:-.}"

3
.local/bin/scripts/rgain Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
# Recursively add replaygain to the given files or from the current directory
r128gain -r --preserve-times 1 "${@:-.}"