mirror of
https://github.com/macports/getopt.git
synced 2026-03-31 14:45:56 -07:00
7 lines
122 B
Bash
Executable File
7 lines
122 B
Bash
Executable File
#!/bin/bash
|
|
if `getopt -T >/dev/null 2>&1` ; [ $? = 4 ] ; then
|
|
echo "Enhanced getopt(1)"
|
|
else
|
|
echo "Old getopt(1)"
|
|
fi
|