diff options
author | fche <fche> | 2005-07-28 22:12:59 +0000 |
---|---|---|
committer | fche <fche> | 2005-07-28 22:12:59 +0000 |
commit | b2d5d95caa573e486b6503406b688da824cd20a9 (patch) | |
tree | 1f7cdb599d5d70d392ac6396c47094aa59e6283e /main.cxx | |
parent | 1c2aeef9fee160bf4d6ec9fe6d4cc8d31788f0df (diff) | |
download | systemtap-steved-b2d5d95caa573e486b6503406b688da824cd20a9.tar.gz systemtap-steved-b2d5d95caa573e486b6503406b688da824cd20a9.tar.xz systemtap-steved-b2d5d95caa573e486b6503406b688da824cd20a9.zip |
2005-07-28 Frank Ch. Eigler <fche@redhat.com>
* stap.1: Beginnings of a man page.
* Makefile.am: Install it. Comment out stpd LDADD goodies.
* configure.ac: Futilely complain about non-stpd LIBS.
* Makefile.in, configure.in: Regenerated.
* main.cxx (usage): Remove ARGS from help text, as nothing is
done with these yet.
Diffstat (limited to 'main.cxx')
-rw-r--r-- | main.cxx | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -39,11 +39,11 @@ usage (systemtap_session& s) << "This is free software; see the source for copying conditions." << endl << endl - << "Usage: stap [options] FILE [ARGS ...] Run script in file." + << "Usage: stap [options] FILE Run script in file." << endl - << " or: stap [options] - [ARGS ...] Run script on stdin." + << " or: stap [options] - Run script on stdin." << endl - << " or: stap [options] -e SCRIPT [ARGS ...] Run given script." + << " or: stap [options] -e SCRIPT Run given script." << endl << endl << "Arguments:" << endl @@ -66,12 +66,10 @@ usage (systemtap_session& s) << " " << s.runtime_path << endl << " -r RELEASE use kernel RELEASE, instead of" << endl << " " << s.kernel_release << endl - << " -m MODULE set probe module name, insetad of" << endl + << " -m MODULE set probe module name, instead of" << endl << " " << s.module_name << endl << " -o FILE send output to file instead of stdout" << endl << " -k keep temporary directory" << endl; - // XXX: other options: - // -s: safe mode // -d: dump safety-related external references exit (0); |