# A small example script for using the getopt(1) program.
# This script will only work with bash(1).
# A similar script using the tcsh(1) language can be found
-# as getopt-parse.tcsh.
+# as getopt-example.tcsh.
# Example input and output (from the bash prompt):
#
-# ./getopt-parse.bash -a par1 'another arg' --c-long 'wow!*\?' -cmore -b " very long "
+# ./getopt-example.bash -a par1 'another arg' --c-long 'wow!*\?' -cmore -b " very long "
# Option a
# Option c, no argument
# Option c, argument 'more'
# A small example script for using the getopt(1) program.
# This script will only work with tcsh(1).
# A similar script using the bash(1) language can be found
-# as getopt-parse.bash.
+# as getopt-example.bash.
# Example input and output (from the tcsh prompt):
-# ./parse.tcsh -a par1 'another arg' --c-long 'wow\!*\?' -cmore -b " very long "
+# ./getopt-example.tcsh -a par1 'another arg' --c-long 'wow\!*\?' -cmore -b " very long "
# Option a
# Option c, no argument
# Option c, argument `more'
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
-# This test script is modified version of 'getopt-parse.bash' example
+# This test script is modified version of 'getopt-example.bash' example
# file in misc/ directory.
TS_TOPDIR="${0%/*}/../.."