mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 02:22:43 +00:00 
			
		
		
		
	
		
			
				
	
	
	
	
		
			333 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			333 B
		
	
	
	
	
	
	
	
Name
echo - print the given text
Synopsis
$ echo [-n] text...
Description
Print the given text, which is passed as argv, to the standard output, separating arguments with a space character.
Options
- -n: Do not output a trailing newline
Examples
$ echo hello friends!
hello friends!
