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