You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
# Sleep until update-kali-menu disappeared
|
|
while pgrep -f update-kali-menu >/dev/null; do
|
|
echo "Sleeping 10 seconds as update-kali-menu is still running..."
|
|
sleep 10
|
|
done
|