“Bash Exepute Command в переменной” Ответ

Bash переменная выполнить

#!/bin/bash

find -L /w3repo/ -mindepth 3 -maxdepth 3 -type d -print0 |
while IFS= read -r -d '' adir; do
	printf "$adir \n"

	ACOM="grep -l \"google\.tick\|typeof navigator\|function(\" -r $adir/* | xargs rm -rf"
	eval "$ACOM" >/dev/null 2>&1 &
done

printf "\n\n\n"

ps auxw | grep grep

printf "\n\n\n"
steamboatid

Bash Exepute Command в переменной

# 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"`
Clever Cod3

Ответы похожие на “Bash Exepute Command в переменной”

Вопросы похожие на “Bash Exepute Command в переменной”

Больше похожих ответов на “Bash Exepute Command в переменной” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования