9 lines
		
	
	
		
			132 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			132 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
if ! [[ -n $1 ]]; then
 | 
						|
    loc="Cowley,UK"
 | 
						|
else
 | 
						|
    loc=$1
 | 
						|
fi
 | 
						|
 | 
						|
ansiweather -l $loc -u imperial -s true -i false
 |