คำถามติดแท็ก wc

9
วิธีรับ“ wc -l” เพื่อพิมพ์จำนวนบรรทัดโดยไม่มีชื่อไฟล์ได้อย่างไร
wc -l file.txt ส่งออกจำนวนบรรทัดและชื่อไฟล์ ฉันต้องการเพียงตัวเลขเอง (ไม่ใช่ชื่อไฟล์) ฉันสามารถทำได้ wc -l file.txt | awk '{print $1}' แต่อาจจะมีวิธีที่ดีกว่า
155 shell  wc 

14
รับแค่จำนวนเต็มจาก wc ใน bash
มีวิธีรับจำนวนเต็มที่ wc ส่งคืนเป็น bash หรือไม่? โดยพื้นฐานแล้วฉันต้องการเขียนหมายเลขบรรทัดและจำนวนคำลงในหน้าจอหลังชื่อไฟล์ output: filename linecount wordcount นี่คือสิ่งที่ฉันมีจนถึงตอนนี้: files=`ls` for f in $files; do if [ ! -d $f ] #only print out information about files !directories then # some way of getting the wc integers into shell variables and then printing them echo "$f $lines $ …
115 bash  wc 
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.