Admin/Windows/Cygwin/isabelle/postinstall
author eberlm
Tue, 05 Jan 2016 20:23:49 +0100
changeset 62067 0fd850943901
parent 61737 b91b1ebfc8a0
child 64386 e936967c2a06
permissions -rwxr-xr-x
Fixed sectioning in HOL/Library/Polynomial

#!/bin/bash

export PATH=/bin

bash /etc/postinstall/base-files-mketc.sh.done

mkpasswd -l >/etc/passwd
mkgroup -l >/etc/group

find -type d -exec chmod 755 '{}' +
find -type f \( -name '*.exe' -o -name '*.dll' \) -exec chmod 755 '{}' +
find -type f -not -name '*.exe' -not -name '*.dll' -not -name '*.scala' -not -name '*.ML' -not -name '*.thy' -exec chmod 644 '{}' +
find -type f \( -name '*.scala' -o -name '*.ML' -o -name '*.thy' \) -exec chmod 444 '{}' +
xargs -0 < contrib/cygwin/isabelle/executables chmod 755