我正在尝试将脚本体作为命令执行远程目标。
有人可以帮助我将以下脚本作为一行命令吗?
#!/bin/bash
shopt -s globstar
cd /target/path
FILES=`find -type f -name '*.*'`
for f in $FILES
do
perl -i.tokens -pe '
s[ ( \{\{ (.+?) \}\} ) ]
[
if (exists $ENV{$2}) {
$ENV{$2}
} else {
warn "unknown component property $2 in file $ARGV\n";
$1
}
]gex
' $f
done
提前致谢, 安德烈
答案 0 :(得分:0)
您可以将其浓缩为:
cardMoreActions({{eedback.FeedbackTrackerId}})
假设你有GNU工具。