diff --git a/share/sushi/util/Makefile b/share/sushi/util/Makefile new file mode 100644 index 000000000000..e2ad277cf7c0 --- /dev/null +++ b/share/sushi/util/Makefile @@ -0,0 +1,11 @@ +# $NetBSD: Makefile,v 1.1 2001/03/07 07:02:20 garbled Exp $ + +SUBDIR= scripting logging + +FILES= help index +FILESDIR=${BINDIR}/sushi/util +MKOBJ= no + +.include "../../Makefile.inc" +.include +.include diff --git a/share/sushi/util/help b/share/sushi/util/help new file mode 100644 index 000000000000..4edf0f7d122f --- /dev/null +++ b/share/sushi/util/help @@ -0,0 +1,18 @@ +This submenu provides access to utilities within sushi. Most of these +affect the run time behavior of sushi. + +Scripting will turn on or off the scripting functionality of sushi. When on, +sushi will record all commands executed in a file called "sushi.script" +placed in the current working directory where you executed sushi. This +file can be executed as a shell script to completely replay the entire +session. This can be useful when configuring multiple identical machines. + +Logging will turn on or off the logging functionality of sushi. When on, +sushi will record a log of all commands executed in a file called "sushi.log" +placed in the current working directory where you executed sushi. + +The current status of logging or scripting can be seen at the bottom of your +screen in the help bar. Changes made here to logging or scripting are only +effective for the current execution of sushi. + +$NetBSD: help,v 1.1 2001/03/07 07:02:20 garbled Exp $ diff --git a/share/sushi/util/index b/share/sushi/util/index new file mode 100644 index 000000000000..debc5ded13c1 --- /dev/null +++ b/share/sushi/util/index @@ -0,0 +1,3 @@ +# $NetBSD: index,v 1.1 2001/03/07 07:02:20 garbled Exp $ +scripting scripting Toggle scripting of all commands +logging logging Toggle logging of all commands diff --git a/share/sushi/util/logging/Makefile b/share/sushi/util/logging/Makefile new file mode 100644 index 000000000000..7462bd6c2540 --- /dev/null +++ b/share/sushi/util/logging/Makefile @@ -0,0 +1,8 @@ +# $NetBSD: Makefile,v 1.1 2001/03/07 07:02:21 garbled Exp $ + +FILES= func +FILESDIR=${BINDIR}/sushi/util/logging +MKOBJ= no + +.include "../../../Makefile.inc" +.include diff --git a/share/sushi/util/logging/func b/share/sushi/util/logging/func new file mode 100644 index 000000000000..2a0f5dead221 --- /dev/null +++ b/share/sushi/util/logging/func @@ -0,0 +1 @@ +log_do,on diff --git a/share/sushi/util/scripting/Makefile b/share/sushi/util/scripting/Makefile new file mode 100644 index 000000000000..b5bba02af6f1 --- /dev/null +++ b/share/sushi/util/scripting/Makefile @@ -0,0 +1,8 @@ +# $NetBSD: Makefile,v 1.1 2001/03/07 07:02:21 garbled Exp $ + +FILES= func +FILESDIR=${BINDIR}/sushi/util/scripting +MKOBJ= no + +.include "../../../Makefile.inc" +.include diff --git a/share/sushi/util/scripting/func b/share/sushi/util/scripting/func new file mode 100644 index 000000000000..3d459a7eb60d --- /dev/null +++ b/share/sushi/util/scripting/func @@ -0,0 +1 @@ +script_do,on