From b2d5d95caa573e486b6503406b688da824cd20a9 Mon Sep 17 00:00:00 2001 From: fche Date: Thu, 28 Jul 2005 22:12:59 +0000 Subject: 2005-07-28 Frank Ch. Eigler * 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. --- main.cxx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'main.cxx') diff --git a/main.cxx b/main.cxx index fb19fd43..9368573e 100644 --- a/main.cxx +++ b/main.cxx @@ -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); -- cgit