3

我有一个日志文件,其中数据用空格分隔。不幸的是,其中一个数据字段也包含空格。我想用“%20”替换这些空格。它看起来像这样:

2012-11-02 23:48:36 INFO 10.2.3.23 something strange name.doc 3.0.0 view1 orientation_right

预期的结果是

2012-11-02 23:48:36 INFO 10.2.3.23 something%20strange%20name.doc 3.0.0 view1 orientation_right

无法预测 IP 地址和“.doc”之间有多少空格。因此,如果可能的话,我想使用纯 bash 在这两种模式之间进行更改。

谢谢您的帮助

4

6 回答 6

1
$ cat file
2012-11-02 23:48:36 INFO 10.2.3.23 something strange name.doc 3.0.0 view1 orientation_right

使用 Perl:

$ perl -lne 'if (/(.*([0-9]{1,3}\.){3}[0-9]{1,3} )(.*)(.doc.*)/){($a,$b,$c)=($1,$3,$4);$b=~s/ /%20/g;print $a.$b.$c;}' file
2012-11-02 23:48:36 INFO 10.2.3.23 something%20strange%20name.doc 3.0.0 view1 orientation_right
于 2012-11-04T07:19:19.630 回答
1

这可能对您有用(GNU sed):

sed 's/\S*\s/&\n/4;s/\(\s\S*\)\{3\}$/\n&/;h;s/ /%20/g;H;g;s/\(\n.*\n\)\(.*\)\n.*\n\(.*\)\n.*/\3\2/' file

这会将行分成三份,复制该行,在其中一个副本中将space's替换为 ' %20,然后重新组合该行以丢弃不需要的部分。

编辑:

参考下面的评论,上述解决方案可以改进为:

sed -r 's/\S*\s/&\n/4;s/.*\.doc/&\n/;h;s/ /%20/g;H;g;s/(\n.*\n)(.*)\n.*\n(.*)\n.*/\3\2/' file
于 2012-11-04T09:08:33.073 回答
0

尚未经过测试,但在 Bash 4 中可以做到这一点

if [[ $line =~ (.*([0-9]+\.){3}[0-9]+ +)([^ ].*\.doc)(.*) ]]; then
  nospace=${BASH_REMATCH[3]// /%20}
  printf "%s%s%s\n" ${BASH_REMATCH[1]} ${nospace} ${BASH_REMATCH[4]}
fi
于 2012-11-04T08:00:46.957 回答
0

这是使用 GNU sed 的一种方法:

echo "2012-11-02 23:48:36 INFO 10.2.3.23 something strange name.doc 3.0.0 view1 orientation_right" |
sed -r 's/(([0-9]+\.){3}[0-9]+\s+)(.*\.doc)/\1\n\3\n/; h; s/[^\n]+\n([^\n]+)\n.*$/\1/; s/\s/%20/g; G; s/([^\n]+)\n([^\n]+)\n([^\n]+)\n(.*)$/\2\1\4/'

输出:

2012-11-02 23:48:36 INFO 10.2.3.23 something%20strange%20name.doc 3.0.0 view1 orientation_right

解释

s/(([0-9]+\.){3}[0-9]+\s+)(.*\.doc)/\1\n\3\n/  # Separate the interesting bit on its own line
h                                             # Store the rest in HS for later
s/[^\n]+\n([^\n]+)\n.*$/\1/                   # Isolate the interesting bit
s/\s/%20/g                                     # Do the replacement
G                                             # Fetched stored bits back
s/([^\n]+)\n([^\n]+)\n([^\n]+)\n(.*)$/\2\1\4/ # Reorganize into the correct order
于 2012-11-04T09:23:15.970 回答
0

Thor 的答案的一个变体,但使用了 3 个过程(4 个带有cat波纹管,但您可以通过将 your_file 作为第一个 sed 的最后一个参数来摆脱它):

cat your_file |
  sed -r -e 's/ (([0-9]+\.){3}[0-9]+) +(.*\.doc) / \1\n\3\n/' |
  sed -e '2~3s/ /%20/g' |
  paste -s -d "  \n"

正如托尔解释的那样:

  • 第一个 sed ( s/ (([0-9]+\.){3}[0-9]+) +(.*\.doc) / \1\n\3\n/) 将有趣的位分隔在自己的行上。

进而:

  • %20第二个 sed在第 2 行和每 3 行替换所有空格。
  • 最后,将其重新粘贴在一起。

必须注意,该2~3部分是 GNU sed 扩展。如果你没有 GNU sed,你可以这样做:

cat your_file |
  sed -r -e 's/ (([0-9]+\.){3}[0-9]+) +(.*\.doc) / \1\n\3\n/' |
  sed -e 'N;P;s/.*\n//;s/ /%20/g;N' |
  paste -s -d "  \n"
于 2012-11-04T10:14:17.583 回答
0

只是猛击。假设 4 个字段出现在空格分隔的字符串之前,3 个字段出现在之后:

reformat_line() {
    local sep i new=""
    for ((i=1; i<=$#; i++)); do
        if (( i==1 )); then
            sep=""
        elif (( (1<i && i<=5) || ($#-3<i && i<=$#) )); then
            sep=" "
        else
            sep="%20"
        fi
        new+="$sep${!i}"
    done
    echo "$new"
}

while IFS= read -r line; do
    reformat_line $line    # unquoted variable here
done < filename

输出

2012-11-02 23:48:36 INFO 10.2.3.23 something%20strange%20name.doc 3.0.0 view1 orientation_right
于 2012-11-04T12:35:12.087 回答