5

我有一个这种格式的mac地址列表:

412010000018
412010000026
412010000034

我想要这个输出:

41:20:10:00:00:18
41:20:10:00:00:26
41:20:10:00:00:34

我试过这个,但没有奏效:

sed 's/([0-9]{2})([0-9]{2})([0-9]{2})([0-9]{2})/\1:\2:\3:\4/g' mac_list

我该怎么做?

4

5 回答 5

7

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

sed 's/..\B/&:/g' file
于 2012-06-12T12:13:24.327 回答
5

这对我有用

sed 's/\(..\)/\1:/g;s/:$//' file
于 2014-08-08T17:34:24.627 回答
3

您必须使用正确的sed语法:

\{I\}
     matches exactly I sequences (I is a decimal integer;
     for portability, keep it between 0 and 255 inclusive).

\(REGEXP\)
     Groups the inner REGEXP as a whole, this is used for back references.

这是一个涵盖前 2 个字段的示例命令

     sed 's/^\([0-9A-Fa-f]\{2\}\)\([0-9A-Fa-f]\{2\}\).*$/\1:\2:/'

下面的命令可以处理一个完整的MAC地址,并且易于阅读:

 sed -e 's/^\([0-9A-Fa-f]\{2\}\)/\1_/'  \
     -e 's/_\([0-9A-Fa-f]\{2\}\)/:\1_/' \
     -e 's/_\([0-9A-Fa-f]\{2\}\)/:\1_/' \
     -e 's/_\([0-9A-Fa-f]\{2\}\)/:\1_/' \
     -e 's/_\([0-9A-Fa-f]\{2\}\)/:\1_/' \
     -e 's/_\([0-9A-Fa-f]\{2\}\)/:\1/'

遵循@Qtax 在此处发布的带有全局替换的 perl 解决方案的想法,可以获得更短的解决方案:

 sed -e 's/\([0-9A-Fa-f]\{2\}\)/\1:/g' -e 's/\(.*\):$/\1/'
于 2012-06-12T07:08:10.780 回答
2

Perl 示例:

perl -pe 's/(\b|\G)[\da-f]{2}(?=[\da-f]{2})/$&:/ig' file

如果文件只有 MAC 地址,可以简化为:

perl -pe 's/\w{2}\B/$&:/g' file
于 2012-06-12T07:12:14.567 回答
1

如果awk是可接受的解决方案:

awk 'BEGIN { FS= "" }
{ for (i=1; i<=length($0) ; i++) {
      if (i % 2 == 0) { macaddr=macaddr $i ":" } 
      else { macaddr = macaddr $i }
  }
  print gensub(":$","","g",macaddr)
  macaddr=""
}' INPUTFILE

做得很好。在这里您可以看到它的实际效果

于 2012-06-12T07:10:55.300 回答