blob: f33c25c3067b1ad849a0ebfcbe82b5272984f7a1 [file] [log] [blame]
Joshua Habermanc6493972020-04-01 15:28:25 -07001#!/bin/bash
2for file in $(find . -type f); do
3 if [ "$(head -c 2 $file)" == "#!" ]; then
4 chmod u+x $file
5 else
6 chmod a-x $file
7 fi
8done