mirror of
https://github.com/joglomedia/LEMPer.git
synced 2026-04-04 19:58:18 +00:00
9 lines
203 B
Bash
Executable File
9 lines
203 B
Bash
Executable File
#!/bin/sh
|
|
# usage:
|
|
#####################################################
|
|
# directory
|
|
[ "$1" = "" ] && return 0
|
|
|
|
find $1 -type d -print0 | xargs -0 chmod 755
|
|
find $1 -type f -print0 | xargs -0 chmod 644
|