This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# Script to start Pulse VPN GUI on Linux/GNU | |
# | |
echo "--- updating LD_LIBRARY_PATH" | |
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/pulse/extra/usr/lib/x86_64-linux-gnu/ | |
echo "--- starting Pulse VPN" | |
if | |
find /usr/local/pulse -name 'pulseUi' -print0 | xargs nohup {} & | |
then |