diff options
author | Denis Vlasenko | 2008-02-09 06:26:53 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-02-09 06:26:53 +0000 |
commit | 65581f3ed1032b7b1c741d6487a0ff3b742a1c8e (patch) | |
tree | df213c6f4a9fffdab727b3b6cf576c33f1bf0321 /include/usage.h | |
parent | 1e2a7e4ed1ddcd457b6e7e3eebd6a90b7621079e (diff) | |
download | busybox-65581f3ed1032b7b1c741d6487a0ff3b742a1c8e.zip busybox-65581f3ed1032b7b1c741d6487a0ff3b742a1c8e.tar.gz |
mktemp: support -p DIR (Timo Teras <timo.teras at iki.fi>)
packed_usage 23595 23660 +65
mktemp_main 139 157 +18
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/include/usage.h b/include/usage.h index 77a8607..a65e249 100644 --- a/include/usage.h +++ b/include/usage.h @@ -2339,13 +2339,19 @@ USE_FEATURE_BRCTL_FANCY("\n" \ " block-count Number of block to use (default is entire partition)" #define mktemp_trivial_usage \ - "[-dq] TEMPLATE" + "[-dqt] [-p dir] TEMPLATE" #define mktemp_full_usage \ "Create a temporary file with its name based on TEMPLATE.\n" \ "TEMPLATE is any name with six 'Xs' (i.e., /tmp/temp.XXXXXX)." \ "\n\nOptions:\n" \ " -d Make a directory instead of a file\n" \ - " -q Fail silently if an error occurs" + /* " -q Fail silently if an error occurs\n" - we ignore it */ \ + " -t Generate a path rooted in temporary directory\n" \ + " -p DIR Use DIR as a temporary directory (implies -t)\n" \ + "\n" \ + "For -t or -p, directory is chosen as follows:\n" \ + "$TMPDIR if set, else -p DIR, else /tmp" + #define mktemp_example_usage \ "$ mktemp /tmp/temp.XXXXXX\n" \ "/tmp/temp.mWiLjM\n" \ |