mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-16 15:20:09 -07:00
6a02a17902
Former-commit-id: e62f136f3677cb73bfa2d22f9ff10e8c0745bcc3
6 lines
153 B
Bash
Executable file
6 lines
153 B
Bash
Executable file
#!/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
|