2 # Copyright (C) 2011-2015 Free Software Foundation, Inc.
3 # This file is part of the GNU C Library.
5 # The GNU C Library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License, or (at your option) any later version.
10 # The GNU C Library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Lesser General Public License for more details.
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with the GNU C Library; if not, see
17 # <http://www.gnu.org/licenses/>.
19 # We should be able to find the translation right at the beginning.
21 TEXTDOMAINDIR
=@TEXTDOMAINDIR@
23 unset SOTRUSS_FROMLIST
27 unset SOTRUSS_NOINDENT
29 lib
='@PREFIX@/$LIB/audit/sotruss-lib.so'
32 echo $
"Usage: sotruss [OPTION...] [--] EXECUTABLE [EXECUTABLE-OPTION...]
33 -F, --from FROMLIST Trace calls from objects on FROMLIST
34 -T, --to TOLIST Trace calls to objects on TOLIST
36 -e, --exit Also show exits from the function calls
37 -f, --follow Trace child processes
38 -o, --output FILENAME Write output to FILENAME (or FILENAME.$PID in case
39 -f is also used) instead of standard error
41 -?, --help Give this help list
42 --usage Give a short usage message
43 --version Print program version"
46 printf $
"Mandatory arguments to long options are also mandatory for any corresponding\nshort options.\n"
49 printf $
"For bug reporting instructions, please see:\\n%s.\\n" \
55 printf >&2 $
"%s: option requires an argument -- '%s'\n" sotruss
"$1"
56 printf >&2 $
"Try \`%s --help' or \`%s --usage' for more information.\n" sotruss sotruss
61 printf >&2 $
"%s: option is ambiguous; possibilities:"
62 while test $# -gt 0; do
67 printf >&2 $
"Try \`%s --help' or \`%s --usage' for more information.\n" sotruss sotruss
71 while test $# -gt 0; do
73 --v |
--ve |
--ver |
--vers |
--versi |
--versio |
--version)
74 echo "sotruss @PKGVERSION@@VERSION@"
75 printf $
"Copyright (C) %s Free Software Foundation, Inc.
76 This is free software; see the source for copying conditions. There is NO
77 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
79 printf $
"Written by %s.\n" "Ulrich Drepper"
82 -\? |
--h |
--he |
--hel |
--help)
85 --u |
--us |
--usa |
--usag |
--usage)
86 printf $
"Usage: %s [-ef] [-F FROMLIST] [-o FILENAME] [-T TOLIST] [--exit]
87 [--follow] [--from FROMLIST] [--output FILENAME] [--to TOLIST]
88 [--help] [--usage] [--version] [--]
89 EXECUTABLE [EXECUTABLE-OPTION...]\n" sotruss
92 -F |
--fr |
--fro |
--from)
93 if test $# -eq 1; then
100 if test $# -eq 1; then
106 -o |
--o |
--ou |
--out |
--outp |
--outpu |
--output)
107 if test $# -eq 1; then
113 -f |
--fo |
--fol |
--foll |
--follo |
--follow)
116 -l |
--l |
--li |
--lib)
117 if test $# -eq 1; then
123 -e |
--e |
--ex |
--exi |
--exit)
127 do_ambiguous
'--from' '--follow'
134 printf >&2 $
"%s: unrecognized option '%c%s'\n" sotruss
'-' ${1#-}
135 printf >&2 $
"Try \`%s --help' or \`%s --usage' for more information.\n" sotruss sotruss
145 export SOTRUSS_FROMLIST
146 export SOTRUSS_TOLIST
147 export SOTRUSS_OUTNAME
150 export LD_AUDIT
="$lib"