홀수 번호와 짝수 번호 줄을 파일에서 인쇄하고 싶습니다.
echo를 사용하는이 쉘 스크립트를 찾았습니다.
#!/bin/bash
# Write a shell script that, given a file name as the argument will write
# the even numbered line to a file with name evenfile and odd numbered lines
# in a text file called oddfile.
# -------------------------------------------------------------------------
# Copyright (c) 2001 nixCraft project <http://cyberciti.biz/fb/>
# This script is licensed under GNU GPL version 2.0 or above
# -------------------------------------------------------------------------
# This script is part of nixCraft shell script collection (NSSC)
# Visit http://bash.cyberciti.biz/ for more information.
# -------------------------------------------------------------------------
file=$1
counter=0
eout="evenfile.$$" # even file name
oout="oddfile.$$" # odd file name
if [ $# -eq 0 ]
then
echo "$(basename $0) file"
exit 1
fi
if [ ! -f $file ]
then
echo "$file not a file"
exit 2
fi
while read line
do
# find out odd or even line number
isEvenNo=$( expr $counter % 2 )
if [ $isEvenNo -ne 0 ]
then
# even match
echo $line >> $eout
else
# odd match
echo $line >> $oout
fi
# increase counter by 1
(( counter ++ ))
done < $file
echo "Even file - $eout"
echo "Odd file - $oout"
그러나 한 줄로 할 수있는 방법이 없습니까?
예, awk를 사용하십시오 .
짝수 라인 :
awk 'NR % 2' filename
홀수 라인 :
awk 'NR % 2 == 1' filename
그러나 그것은 나를 위해 작동하지 않습니다. diff에 따르면 둘 다 동일한 출력을 생성합니다. 원본 파일과 비교할 때 파일의 길이는 실제로 절반이며 홀수 줄이 들어 있습니다. 내가 뭔가 잘못하고 있습니까?
NR % 2 == 0
, 그렇지 않으면 두 번째 것과 같습니다.