4 lines
123 B
Bash
Executable file
4 lines
123 B
Bash
Executable file
#!/bin/sh
|
|
# Simple program that changes ownership to the current
|
|
# user, recursively.
|
|
sudo chown -R $(whoami):$(whoami) $1
|