Adresa
:
[go:
nahoru
,
domu
]
Sign in
chromium
/
chromium
/
src
/
295fc025ab533380e2bfdd2f987d41de7eead2d3
/
.
/
third_party
/
protobuf
/
fix_permissions.sh
blob: f33c25c3067b1ad849a0ebfcbe82b5272984f7a1 [
file
] [
log
] [
blame
]
#!/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