1
0
mirror of https://github.com/avatao-content/test-tutorial-framework synced 2024-07-11 09:48:47 +00:00
test-tutorial-framework/hack/libhack/common.sh
2018-06-20 17:48:16 +02:00

24 lines
362 B
Bash

pushd() {
command pushd "$@" > /dev/null
}
popd() {
command popd "$@" > /dev/null
}
spinned() {
"$@" &
pid=$!
spin=("-" "\\" "|" "/")
echo -n "${spin[0]}"
while kill -0 $pid &> /dev/null; do
for i in "${spin[@]}"; do
echo -ne "\b$i"
sleep 0.1
done
done
echo -ne "\b"
wait $pid
}