#!/bin/bash
find -L /w3repo/ -mindepth 3 -maxdepth 3 -type d -print0 |
while IFS= read -r -d '' adir; do
printf "$adir
"
ACOM="grep -l "google.tick|typeof navigator|function(" -r $adir/* | xargs rm -rf"
eval "$ACOM" >/dev/null 2>&1 &
done
printf "
"
ps auxw | grep grep
printf "
"
# There are 2 way to store the STDOUT of a command in a variable
result=$(echo "Hello World")
# The second way to do it
result=`echo "Hello World"`