5 lines
		
	
	
		
			138 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
		
			138 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # shellcheck disable=SC2148
 | |
| # Create an empty file and any necessary directories
 | |
| touchp() {
 | |
|     mkdir -p "$(dirname "$1")" && touch "$1"
 | |
| } |