diff options
author | David Wührer <def@gmx.at> | 2024-05-18 21:04:34 +0200 |
---|---|---|
committer | David Wührer <def@gmx.at> | 2024-05-18 21:04:34 +0200 |
commit | 77cfffee6177fb0421fa0fce15d6a1875bde4816 (patch) | |
tree | 251428cdd482ea50cfb019dbd3c3bafd79d2fd14 /man/man1/strjoin.1 | |
parent | 75b23ce1ff0daab363725a2a5755ea80bbeaa68e (diff) |
manuals, sum-down, radix
Diffstat (limited to 'man/man1/strjoin.1')
-rw-r--r-- | man/man1/strjoin.1 | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/man/man1/strjoin.1 b/man/man1/strjoin.1 new file mode 100644 index 0000000..dd32f46 --- /dev/null +++ b/man/man1/strjoin.1 @@ -0,0 +1,40 @@ +.TH strjoin 1 2023-07-03 utils + +.SH NAME +strjoin \- join words with a word + +.SH SYNOPSIS +.B strjoin +.IR separator \ [ word\ ... ] + +.SH DESCRIPTION +.B strjoin +is the command line equivalent of +.BR python (1)'s +.B str.join(...) +and java (1)'s +.BR Stream<String>.collect(Collectors.joining(...)) . +It is practically identical to +.B IFS=,;echo "$*" +in +.BR bash (1), +without having to set and reset the +.I IFS +variable. + +The first parameter is the separator +that goes between the words. +All other parameters are the words. +(They don't have to be single words, but they are treated as such.) + +This is useful for constructing paths, +like for example +.BR java (1) +classpaths for +.BR jar (1) +manifest files, +but also tab-separated value records, +and tons of other things. + +.SH EXAMPLES +.B strjoin , foo bar baz |