4 lines
99 B
Plaintext
4 lines
99 B
Plaintext
|
#!/bin/sh
|
||
|
# Take ownership of the given files recursively
|
||
|
sudo chown -R --preserve-root $USER "$@"
|