mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2024-11-22 21:40:16 -08:00
7 lines
226 B
Bash
7 lines
226 B
Bash
#!/usr/bin/env bash
|
|
FILENAME=$(basename -- "$0")
|
|
if [ -f "$FILENAME" ]; then
|
|
./$FILENAME
|
|
else
|
|
echo "The $FILENAME script does not exist in the current directory. Make sure you are in the Proxmark source directory."
|
|
fi |