2014-06-24 04:00:39 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# spin.sh -- show a spinner (for coverage test)
|
2017-02-24 05:11:45 +00:00
|
|
|
# Copyright (C) 2014-present SheetJS
|
2014-06-24 04:00:39 +00:00
|
|
|
|
|
|
|
wpid=$1
|
|
|
|
delay=1
|
|
|
|
str="|/-\\"
|
|
|
|
while [ $(ps -a|awk '$1=='$wpid' {print $1}') ]; do
|
|
|
|
t=${str#?}
|
|
|
|
printf " [%c]" "$str"
|
|
|
|
str=$t${str%"$t"}
|
|
|
|
sleep $delay
|
|
|
|
printf "\b\b\b\b"
|
|
|
|
done
|