13 lines
		
	
	
		
			262 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			262 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash -ue
 | 
						|
 | 
						|
[[ -n ${DEBUG:-} ]] && set -o xtrace
 | 
						|
 | 
						|
channel="$1"
 | 
						|
 | 
						|
curl -L -s \
 | 
						|
     "https://www.flatcar.org/releases-json/releases-$channel.json" \
 | 
						|
    | jq -r 'to_entries[] | "\(.key)"' \
 | 
						|
    | grep -v "current" \
 | 
						|
    | sort --version-sort \
 | 
						|
    | tail -n1
 |