我有一个这样的文本文件abcdefg abcdefg abcdefg abcdefg 如何从sed的每一行中删除前两个字符和后两个字符?我想得到这样的输出bcde bcde bcde bcde 最佳答案 sed 's/^.\(.*\)..$/\1/' file