i-bash/tests/herestr.tests

40 lines
388 B
Text
Raw Normal View History

2002-07-17 14:10:11 +00:00
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)"
2004-07-27 13:29:18 +00:00
IFS="/" read -r -d $'\000' -a uu <<< /kghfjk/jkfzuk/i
declare -p uu