มีวิธีรับจำนวนเต็มที่ 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 $ words"
fi
done