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