444 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			444 B
		
	
	
	
	
	
	
	
title
| title | 
|---|
| Bash wc | 
Bash command: wc
wc is used to display newline, byte, word counts of a file.
Usage
wc [OPTION]... [FILE]...
Here are some helpful options for its use :
- -cto print the bytes counts.
- -wto print the word counts.
- -mto print the character counts.
More Information
- run man wcto get a list of all options for this command
- Wikipedia