mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:22:45 +00:00 
			
		
		
		
	 98c0c5e9e6
			
		
	
	
		98c0c5e9e6
		
	
	
	
	
		
			
			The URLs of the form `help://man/<section>/<page>` link to another help page inside the help application. All previous relative page links are replaced by this new form. This doesn't change any behavior but it looks much nicer :^) Note that man doesn't handle these new links, but the previous relative links didn't work either.
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			691 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			691 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ## Name
 | |
| 
 | |
| mkdir - create directories
 | |
| 
 | |
| ## Synopsis
 | |
| 
 | |
| ```**sh
 | |
| $ mkdir [options...] directories...
 | |
| ```
 | |
| 
 | |
| ## Description
 | |
| 
 | |
| Create a new empty directory for each of the given *directories*.
 | |
| 
 | |
| ## Options
 | |
| 
 | |
| * `-p`, `--parents`: Create parent directories if they don't exist
 | |
| * `-m`, `--mode`: Sets the permissions for the final directory (possibly altered by the process umask). The mode argument can be given in any of the formats
 | |
| accepted by the chmod(1) command. Addition and removal of permissions is relative to a default permission of 0777.
 | |
| 
 | |
| ## Examples
 | |
| 
 | |
| ```sh
 | |
| $ mkdir -p /tmp/foo/bar
 | |
| $ mkdir -m 0700 /tmp/owner-only
 | |
| $ mkdir -m a=rx /tmp/foo/bar
 | |
| ```
 | |
| 
 | |
| ## See also
 | |
| 
 | |
| * [`mkdir`(2)](help://man/2/mkdir)
 |