-
Notifications
You must be signed in to change notification settings - Fork 12
/
README
43 lines (28 loc) · 1.45 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
########################################################################
# shell-toolbox
########################################################################
Useful shell scripts
How to use:
The scripts are documented with their own manuals. The same manuals
are also available as plain text and Markdown in the "doc" directory
of the source distribution. These will also be installed in
"<prefix>/share/doc/shell-toolbox" by default.
How to install:
Please see the document called "INSTALL" in the source distribution.
Tested on:
Darwin FreeBSD NetBSD OpenBSD Solaris Ubuntu
------------------------------------------------------------------------
# Shell scripts
------------------------------------------------------------------------
* shell:
Creates a shell for testing things in.
This script is useful for testing things in an interactive
environment other than your usual shell, or for testing things in a
clean environment with automatic cleanup of any files left behind.
Creates a "temporary interactive shell" with a temporary working
directory (unless the "-d" flag is used to specify an existing
directory) and clean environment. The working directory is removed
when the shell exits (unless the "-k" or "-d" flag was used).
The temporary working directory may also be pre-populated with the
contents of an existing directory (using the "-s" flag).
See "man 1 shell" after installation.