We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf062b8 commit e7d6fbcCopy full SHA for e7d6fbc
clear.sh
100755
100644
@@ -1,5 +1,5 @@
1
#!/usr/bin/env bash
2
3
# find inside scripts folder, anything matching php7, remove sub and pkg folders src.
4
-find ./scripts -type d -maxdepth 3 | grep -e 'php-7[0-9]*\.[0-9]*/' | xargs -I "{a}" rm -rf "{a}/src"
5
-find ./scripts -type d -maxdepth 3 | grep -e 'php-7[0-9]*\.[0-9]*/' | xargs -I "{a}" rm -rf "{a}/pkg"
+find ./scripts -maxdepth 3 -type d | grep -e 'php-7[0-9]*\.[0-9]*/' | xargs -I "{a}" rm -rf "{a}/src"
+find ./scripts -maxdepth 3 -type d | grep -e 'php-7[0-9]*\.[0-9]*/' | xargs -I "{a}" rm -rf "{a}/pkg"
0 commit comments