f5a8cd1259
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
10 lines
191 B
Bash
Executable file
10 lines
191 B
Bash
Executable file
#!/bin/sh
|
|
|
|
#
|
|
# /usr/bin is obsolete
|
|
# /usr/lib is obsolete
|
|
# /usr/*/{bin,lib,...} is now the correct path
|
|
#
|
|
|
|
find "$1" -type f -exec chmod 0644 {} \;
|
|
find "$1" -type d -exec chmod 0755 {} \;
|