我想有一个名为lines.sh的脚本,我可以通过管道数据来选择一系列行.
例如,如果我有以下文件:
的test.txt
a b c d
然后我可以跑:
cat test.txt | lines 2,4
它会输出
b d
我正在使用zsh,但如果可能的话,我更喜欢使用bash解决方案.
解决方法
你可以使用这个awk:
awk -v s='2,4' 'BEGIN{split(s,a,","); for (i in a) b[a[i]]} NR in b' file two four
通过单独的脚本lines.sh:
#!/bin/bash awk -v s="$1" 'BEGIN{split(s,"); for (i in a) b[a[i]]} NR in b' "$2"
然后给出执行权限:
chmod +x lines.sh
并称之为:
./lines.sh '2,4' 'test.txt'