mirror of
				https://gitlab.com/MrFry/mrfrys-node-server
				synced 2025-04-01 20:24:18 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			85 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			85 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
hr=''
 | 
						|
for ((n=0; n<$(tput cols); n++)); do
 | 
						|
  hr="$hr─"
 | 
						|
done
 | 
						|
 | 
						|
echo $hr
 |