Files
android_external_bash/tests/herestr.tests
2009-09-12 16:46:55 +00:00

37 lines
319 B
Plaintext

a=hot
b=damn
f1()
{
cat <<< "abcde"
cat <<< "yo"
cat <<< "$a $b"
cat <<< 'what a fabulous window treatment'
cat <<< 'double"quote'
}
f2()
{
cat <<< onetwothree
}
f3()
{
cat <<< "$@"
}
f1
f2
f3 first second third
typeset -f
cat <<< 'echo $(echo hi)'
cat <<< "echo ho"
cat <<< "echo $(echo off to work we go)"