bin: add recursive rgain and own with pwd default
This commit is contained in:
parent
bf05f9f175
commit
900e73c018
2 changed files with 5 additions and 2 deletions
|
@ -1,3 +1,3 @@
|
|||
#!/bin/sh
|
||||
# Take ownership of the given files recursively
|
||||
sudo chown -R --preserve-root $USER:$USER "$@"
|
||||
# Recursively take ownership of the given files or the current directory
|
||||
sudo chown -R --preserve-root $USER:$USER "${@:-.}"
|
||||
|
|
3
.local/bin/scripts/rgain
Executable file
3
.local/bin/scripts/rgain
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
# Recursively add replaygain to the given files or from the current directory
|
||||
r128gain -r --preserve-times 1 "${@:-.}"
|
Loading…
Add table
Reference in a new issue