Commit 5da592f5 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Use printf(1) instead of echo(1) with -n option, it should be

more portable, says Nils Goroll
parent 99cff3e9
......@@ -3,9 +3,9 @@
test "Test fileread for std VMOD"
shell {
echo -n "File One" > "${tmpdir}/m00004_file_one"
echo -n "File Two" > "${tmpdir}/m00004_file_two"
echo -n "File Three" > "${tmpdir}/m00004_file_three"
printf "File One" > "${tmpdir}/m00004_file_one"
printf "File Two" > "${tmpdir}/m00004_file_two"
printf "File Three" > "${tmpdir}/m00004_file_three"
}
server s1 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment