Mercurial > ~dholland > hg > ag > index.cgi
view mk/mkinstalldirs.sh @ 24:a4899cdfc2d6 default tip
Obfuscate the regexps to strip off the IBM compiler's copyright banners.
I don't want bots scanning github to think they're real copyright
notices because that could cause real problems.
author | David A. Holland |
---|---|
date | Mon, 13 Jun 2022 00:40:23 -0400 |
parents | 13d2b8934445 |
children |
line wrap: on
line source
#!/bin/sh # mkinstalldirs - create install directories # usage: mkinstalldirs dirs # make this work right even if someone puts spaces in ( while [ "x$1" != x ]; do echo "$1" shift done ) | awk '{ if ($0 ~ "^/") { lead = "/"; sub("^/", "", $0); } else { lead = ""; } n = split($0, a, "/"); for (i=1;i<=n;i++) { printf "%s", lead; for (j=1;j<=i;j++) { printf "%s", a[j]; if (j<i) printf "/"; } printf "\n"; } }' | sort -u | awk '{ printf "if [ ! -d \"%s\" ]; then\n", $0; printf " echo \" [MKDIR] %s\"\n", $0; printf " mkdir \"%s\" || exit 1\n", $0; printf " chmod 755 \"%s\"\n", $0; printf "fi\n" }' | sh