“skrip shell untuk menghitung jumlah baris dalam file” Kode Jawaban

jumlah jumlah garis shell

$ wc -l < /dir/file.txt
3272485
Brave Beetle

skrip shell untuk menghitung jumlah baris dalam file

echo Enter the filename
read file
w=`cat $file | wc -w`
c=`cat $file | wc -c`
l=`grep -c "." $file`
echo Number of characters in $file is $c
echo Number of words in $file is $w
echo Number of lines in $file is $l
stxrship

Jawaban yang mirip dengan “skrip shell untuk menghitung jumlah baris dalam file”

Pertanyaan yang mirip dengan “skrip shell untuk menghitung jumlah baris dalam file”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya