/ Published in: Bash
Usage: setowner james Will set all files in current directory and all subdirectories to owner james:james
Expand |
Embed | Plain Text
#!/bin/sh owner=$1 chown -R ${owner}:${owner} * chown -R ${owner}:${owner} .htaccess
You need to login to post a comment.
