나는 이들 (+ 일부 대안) 중 일부가 다소 큰 파일 ( 163MiB
한 IP
줄에 하나씩 ~ 1,300 만 줄)로 속도면에서 어떻게 작동하는지 궁금했습니다 .
wc -l < iplist
13144256
결과 ( sync; echo 3 > /proc/sys/vm/drop_caches
각 명령 후; 몇 시간 후에 역순으로 테스트를 반복했지만 차이점은 무시할 수있었습니다 gnu sed
.
스틸 드라이버 :
매우 느립니다. 2 분 동안 기다린 후에 중단되었으므로 결과가 없습니다.
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
아비 나쉬 라지 :
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 -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 목록이 실제로 크지 않은 경우 (최대 50000 개의 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
?