2010-12-14 08:40:42 +00:00
|
|
|
#!/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' | parallel --trc "{} more space" -S $SERVER1 cat {} ">{}\\ more\\ space"
|
|
|
|
cat '/tmp/parallel space file more space'
|
|
|
|
|
|
|
|
echo '### Test --trc with >|< added in filename'
|
|
|
|
echo original > '/tmp/parallel space file'
|
|
|
|
echo '/tmp/parallel space file' | parallel --trc "{} >|<" -S $SERVER1 cat {} ">{}\\ \\>\\|\\<"
|
|
|
|
cat '/tmp/parallel space file >|<'
|
2010-12-15 23:12:02 +00:00
|
|
|
|
|
|
|
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
|