mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-08-07 02:32:27 +02:00
Imported from ../bash-2.05b.tar.gz.
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
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)"
|
||||
Reference in New Issue
Block a user