mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-05 01:49:11 -07:00
7 lines
153 B
Text
7 lines
153 B
Text
|
#!/bin/sh
|
||
|
sleep 60
|
||
|
while pgrep -f update-parrot-menu >/dev/null; do
|
||
|
echo "Sleeping 60 seconds as update-parrot-menu is still running..."
|
||
|
sleep 60
|
||
|
done
|