nsbin/permissions.web
Nico Schottelius f5a8cd1259 add files that are living in ~/bin for a while
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
2009-12-28 20:14:14 +01:00

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 {} \;