সোর্স কোড হচ্ছে এটা কিভাবে পরিচালনা যেমন পার্থক্য ব্যাখ্যা করে --help
বিকল্প।
/* Recognize --help or --version, but only when invoked in the
"[" form, when the last argument is not "]". Use direct
parsing, rather than parse_long_options, to avoid accepting
abbreviations. POSIX allows "[ --help" and "[ --version" to
have the usual GNU behavior, but it requires "test --help"
and "test --version" to exit silently with status 0. */
প্রদর্শক
$ /usr/bin/test --help
$
$ /usr/bin/[ --help
Usage: test EXPRESSION
or: test
or: [ EXPRESSION ]
or: [ ]
or: [ OPTION
Exit with the status determined by EXPRESSION.
[...]
ইন bash
builtin সংস্করণ, শুধু পার্থক্য হল [
প্রয়োজন ]
, শেষে হিসাবে আপনি বলেন।