ฉันต้องการพิมพ์บรรทัดเลขคี่และเลขคู่จากไฟล์
ฉันพบเชลล์สคริปต์นี้ซึ่งใช้ประโยชน์จากเสียงสะท้อน
#!/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
อย่างอื่นมิเช่นนั้นจะเท่ากับคนที่สอง