summaryrefslogtreecommitdiff
path: root/sh/gitmetar
blob: 1bfdc1503b45cde24968c13fcc2e77294a916ac1 (plain)
1
2
3
4
5
6
7
#!/bin/sh
# GIT META Read

while read -r mod user group path; do
	chown -hc "$user:$group" -- "$path"
	[ "$mod" -ne 777 ] && chmod -c "$mod" -- "$path"
done < "$1"