mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 09:37:26 +00:00
7 lines
138 B
Bash
Executable file
7 lines
138 B
Bash
Executable file
#!/bin/bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
for FILE in $(find "$DIR" -name '*.php'); do
|
|
php7.0 -l $FILE
|
|
done
|