Answers for "command to ceck number of lines or words in a file"

0

command to ceck number of lines or words in a file

# The first number is for lines, the second is for words and the last is for size in bytes

wc <filename>
wc -l for just lines
wc -w for just words

#check man wc for other options
Posted by: Guest on April-14-2022

Code answers related to "command to ceck number of lines or words in a file"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language