scripts-and-tools/loading

12 lines
138 B
Plaintext
Raw Permalink Normal View History

2022-01-05 20:15:37 +01:00
#!/bin/bash
chars="/-\|"
while :; do
for (( i=0; i<${#chars}; i++ )); do
sleep 0.5
echo -en "${chars:$i:1}" "\r"
done
done