从shell脚本创建一行命令

时间:2017-10-17 11:25:48

标签: shell

我正在尝试将脚本体作为命令执行远程目标。

有人可以帮助我将以下脚本作为一行命令吗?

#!/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

提前致谢, 安德烈

1 个答案:

答案 0 :(得分:0)

您可以将其浓缩为:

cardMoreActions({{eedback.FeedbackTrackerId}})

假设你有GNU工具。