Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
9 lines
147 B
9 lines
147 B
5 years ago
|
#!/bin/bash
|
||
|
for file in $(find . -type f); do
|
||
|
if [ "$(head -c 2 $file)" == "#!" ]; then
|
||
|
chmod u+x $file
|
||
|
else
|
||
|
chmod a-x $file
|
||
|
fi
|
||
|
done
|