Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/README7
1 files changed, 3 insertions, 4 deletions
diff --git a/t/README b/t/README
index 2d6232fbd3..8a9d4995f5 100644
--- a/t/README
+++ b/t/README
@@ -596,15 +596,14 @@ library for your script to use.
...
'
- - test_write_lines <text>
+ - test_write_lines <lines>
- Split <text> to white-space separated words and write it out on standard
- output, one word per line.
+ Write <lines> on standard output, one line per argument.
Useful to prepare multi-line files in a compact form.
Example:
- test_write_lines "a b c d e f g" >foo
+ test_write_lines a b c d e f g >foo
Is a more compact equivalent of:
cat >foo <<-EOF