mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 22:17:54 +00:00
f08db40a33
bug #35803: sentence structure / wrong spelling in manpage.
25 lines
907 B
Bash
25 lines
907 B
Bash
#!/bin/bash
|
|
|
|
SERVER1=parallel-server3
|
|
SERVER2=parallel-server2
|
|
|
|
echo '### Test --trc with space added in filename'
|
|
echo original > '/tmp/parallel space file'
|
|
echo '/tmp/parallel space file' | stdout parallel --trc "{} more space" -S parallel@$SERVER1 cat {} ">{}\\ more\\ space"
|
|
cat '/tmp/parallel space file more space'
|
|
rm '/tmp/parallel space file more space'
|
|
|
|
echo '### Test --trc with >|< added in filename'
|
|
echo original > '/tmp/parallel space file'
|
|
echo '/tmp/parallel space file' | stdout parallel --trc "{} >|<" -S parallel@$SERVER1 cat {} ">{}\\ \\>\\|\\<"
|
|
cat '/tmp/parallel space file >|<'
|
|
rm '/tmp/parallel space file >|<'
|
|
|
|
echo '### Test --return with fixed string (Gave undef warnings)'
|
|
touch a
|
|
echo a | stdout parallel --return b -S .. echo ">b" && echo OK
|
|
rm a b
|
|
|
|
echo '### bug #35427: quoting of {2} broken for --onall'
|
|
echo foo: /bin/ls | parallel --colsep ' ' -S localhost --onall ls {2}
|