6d29b36ede
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
9 lines
184 B
Bash
Executable file
9 lines
184 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Nico Schottelius <nico-linux@schottelius.org>
|
|
# Date: 09-Nov-2005
|
|
# Last Modified: -
|
|
#
|
|
|
|
find "$1" -type d -exec chmod 0755 {} \;
|
|
find "$1" -type f -exec chmod 0644 {} \;
|