14 lines
		
	
	
		
			199 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			14 lines
		
	
	
		
			199 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| 
								 | 
							
								#!/usr/bin/env bash
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								function ssh_setup {
							 | 
						||
| 
								 | 
							
									mkdir -p ~/.ssh
							 | 
						||
| 
								 | 
							
									chmod 700 ~/.ssh
							 | 
						||
| 
								 | 
							
									touch ~/.ssh/config
							 | 
						||
| 
								 | 
							
									chmod 600 ~/.ssh/config
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								function ssh_key {
							 | 
						||
| 
								 | 
							
									ssh-keygen -t ed25519 -C "${1?"Usage: $0 EMAIL"}"
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 |