Perl way of using cut,grep,uniq [closed]

↘锁芯ラ 提交于 2019-12-01 15:31:37

perldoc perlrun will teach you how to fish:

  • -n to read in a file line by line
  • -a to split each line into @F (and emulate cut)
  • list slices to access items stored in @F to emulate cut's -f flag
  • regex conditional to emulate grep
  • use hash keys to emulate uniq
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!