##// END OF EJS Templates
test-custom-filter: heredoc is not required for single line operations
Nicolas Dumazet -
r12125:e5ccb9ea default
parent child Browse files
Show More
@@ -49,15 +49,11 b' Fresh checkout:'
49 49 $ cat stuff.txt
50 50 Copyright 2046, The Masters
51 51 Some stuff to ponder very carefully.
52 $ echo >> stuff.txt <<EOF
53 > Very very carefully.
54 > EOF
52 $ echo "Very very carefully." >> stuff.txt
55 53 $ hg stat
56 54 M stuff.txt
57 55
58 $ cat > morestuff.txt <<EOF
59 > Unauthorized material subject to destruction.
60 > EOF
56 $ echo "Unauthorized material subject to destruction." > morestuff.txt
61 57
62 58 Problem encoding:
63 59
General Comments 0
You need to be logged in to leave comments. Login now