| 
									
										
										
										
											2018-10-12 04:30:38 +05:30
										 |  |  | --- | 
					
						
							|  |  |  | title: Bash Man | 
					
						
							|  |  |  | --- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## Man
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Man, the abbreviation of **man**ual, is a bash command used to display on-line reference manuals of the given command. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 17:32:48 -05:00
										 |  |  | Man displays the relative man page (short for **man**ual **page**) of the given command. | 
					
						
							| 
									
										
										
										
											2018-10-12 04:30:38 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | ### Usage
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ```bash | 
					
						
							|  |  |  | man [options] [command] | 
					
						
							|  |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Most used options: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | * `-f`, print a short description of the given command | 
					
						
							|  |  |  | * `-a`, display, in succession, all of the available intro manual pages contained within the manual | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ### Example
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Display the man page of ls: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ```bash | 
					
						
							|  |  |  | man ls | 
					
						
							|  |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #### More information:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 17:32:48 -05:00
										 |  |  | * Wikipedia: https://en.wikipedia.org/wiki/Man_page |