aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/usage.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/include/usage.h b/include/usage.h
index 77a86074b..a65e24941 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -2339,13 +2339,19 @@ USE_FEATURE_BRCTL_FANCY("\n" \
2339 " block-count Number of block to use (default is entire partition)" 2339 " block-count Number of block to use (default is entire partition)"
2340 2340
2341#define mktemp_trivial_usage \ 2341#define mktemp_trivial_usage \
2342 "[-dq] TEMPLATE" 2342 "[-dqt] [-p dir] TEMPLATE"
2343#define mktemp_full_usage \ 2343#define mktemp_full_usage \
2344 "Create a temporary file with its name based on TEMPLATE.\n" \ 2344 "Create a temporary file with its name based on TEMPLATE.\n" \
2345 "TEMPLATE is any name with six 'Xs' (i.e., /tmp/temp.XXXXXX)." \ 2345 "TEMPLATE is any name with six 'Xs' (i.e., /tmp/temp.XXXXXX)." \
2346 "\n\nOptions:\n" \ 2346 "\n\nOptions:\n" \
2347 " -d Make a directory instead of a file\n" \ 2347 " -d Make a directory instead of a file\n" \
2348 " -q Fail silently if an error occurs" 2348 /* " -q Fail silently if an error occurs\n" - we ignore it */ \
2349 " -t Generate a path rooted in temporary directory\n" \
2350 " -p DIR Use DIR as a temporary directory (implies -t)\n" \
2351 "\n" \
2352 "For -t or -p, directory is chosen as follows:\n" \
2353 "$TMPDIR if set, else -p DIR, else /tmp"
2354
2349#define mktemp_example_usage \ 2355#define mktemp_example_usage \
2350 "$ mktemp /tmp/temp.XXXXXX\n" \ 2356 "$ mktemp /tmp/temp.XXXXXX\n" \
2351 "/tmp/temp.mWiLjM\n" \ 2357 "/tmp/temp.mWiLjM\n" \