查找文件中包含每行特定偏移量的所有单词(bash)

时间:2013-11-12 21:18:16

标签: linux bash

我可以在数组(或字符串)中找到并保存每行中从特定偏移量开始的文件中的所有单词吗?

例如,我的文件包含以下文字:

  270  mc
  271  sudo add-apt-repository ppa:webupd8team/unstable
  272  sudo apt-get update && sudo apt-get install go-mtpfs
  273  sudo apt-get install go-mtpfs-unity
  274  go-mtpf

我想从中获取以下列表:

mc sudo sudo sudo go-mtfp

2 个答案:

答案 0 :(得分:1)

获得第二场:

cut -d " " -f2 file

或以固定偏移量获得值(从位置5开始)

cut -c5- file

答案 1 :(得分:1)

试试这一行:

awk '$0=$2' file