mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-07-06 05:01:19 -07:00
7 lines
190 B
Bash
7 lines
190 B
Bash
#!/bin/bash
|
|
|
|
#Check for an invalid ProxSpace path
|
|
if ! (echo "$PWD" | grep -Eq ^[a-zA-Z0-9\/\._\-]+$) ; then
|
|
echo "Error: Install path contains special characters!"
|
|
sleep infinity
|
|
fi
|