14 lines
		
	
	
		
			259 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			259 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
################################
 | 
						|
# Shows current time
 | 
						|
#
 | 
						|
# @param {String} format: The format of the time
 | 
						|
# @return {Time}: Current time
 | 
						|
################################
 | 
						|
 | 
						|
format=${BLOCK_INSTANCE:-"%H:%M:%S"}
 | 
						|
 | 
						|
date +"$format"
 | 
						|
date +"%H:%M"
 |