ฉันอยากรู้ว่าบางส่วนของเหล่านี้ (+ ทางเลือกบางอย่าง) ทำงานได้เร็วด้วยไฟล์ที่ค่อนข้างใหญ่ ( 163MiB
หนึ่งไฟล์IP
ต่อบรรทัด, ~ 13 ล้านบรรทัด):
wc -l < iplist
13144256
ผลลัพธ์ (ด้วยsync; echo 3 > /proc/sys/vm/drop_caches
หลังจากแต่ละคำสั่งฉันทำการทดสอบซ้ำ - ตามลำดับย้อนหลัง - หลังจากสองสามชั่วโมง แต่ความแตกต่างนั้นเล็กน้อยมากโปรดทราบว่าฉันใช้อยู่gnu sed
):
steeldriver :
ช้ามาก ยกเลิกหลังจากรอสองนาที ... ดังนั้นจึงไม่มีผลลัพธ์สำหรับสิ่งนี้
cuonglm :
awk 'FNR!=1{print l}{l=$0};END{ORS="";print l}' ORS=' | ' iplist
real 0m3.672s
perl -pe 's/\n/ | / unless eof' iplist
real 0m12.444s
mikeserv :
paste -d\ /dev/null iplist /dev/null | paste -sd\| -
real 0m0.983s
jthill :
sed 'H;1h;$!d;x;s/\n/ | /g' iplist
real 0m4.903s
Avinash Raj :
time python2.7 -c'
import sys
with open(sys.argv[1]) as f:
print " | ".join(line.strip() for line in f)' iplist
real 0m3.434s
และ
val0x00ff :
while read -r ip; do printf '%s | ' "$ip"; done < iplist
real 3m4.321s
184.321s
ซึ่งหมายความว่า น่าแปลกใจที่นี่ช้ากว่าโซลูชั่นของmikeservกว่า 200 เท่า
นี่เป็นวิธีอื่นด้วย
awk:
awk '$1=$1' RS= OFS=' | ' iplist
real 0m4.543s
awk '{printf "%s%s",sep,$0,sep=" | "} END {print ""}' iplist
real 0m5.511s
Perl:
perl -ple '$\=eof()?"\n":" | "' iplist
real 0m9.646s
xargs:
xargs <iplist printf ' | %s' | cut -c4-
real 0m6.326s
การรวมกันของ head + paste + tr + cat:
{ head -n -1 | paste -d' |' - /dev/null /dev/null | tr \\n \ ; cat ; } <iplist
real 0m0.991s
หากคุณมีGNU coreutils
และหากรายการ IP ของคุณไม่ใหญ่มาก (สมมติว่าสูงถึง 50,000 IP) คุณสามารถทำได้ด้วยpr
:
pr -$(wc -l infile) -tJS' | ' -W1000000 infile >outfile
ที่ไหน
-$(wc -l infile) # no. of columns (= with no. of lines in your file)
-t # omit page headers and trailers
-J # merge lines
-S' | ' # separate columns by STRING
-W1000000 # set page width
เช่นสำหรับไฟล์ 6 บรรทัด:
134.28.128.0
111.245.28.0
109.245.24.0
128.27.88.0
122.245.48.0
103.44.204.0
คำสั่ง:
pr -$(wc -l <infile) -tJS' | ' -W1000 infile
เอาท์พุท:
134.28.128.0 | 111.245.28.0 | 109.245.24.0 | 128.27.88.0 | 122.245.48.0 | 103.44.204.0
tr
เพิ่มบรรทัดใหม่ลงใน|
ท่อหรือไม่ ชอบ<ipfile tr \\n \| >outfile
ไหม