mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-22 05:17:59 +02:00
49 lines
711 B
Plaintext
49 lines
711 B
Plaintext
a()
|
|
{
|
|
cat <<-'+' | tr "\t" " " | tr -s " "
|
|
cat - | utkSort
|
|
itkSchemaToColumnType
|
|
atkCacheToColumnType \"$npName\" | atkActiveTableLineSelect
|
|
| utkSort
|
|
atkCacheToColumnType \"$npName\" |
|
|
atkTransactionTableLineSelect | utkSort
|
|
itkDirToColumnType \"$dirName\" | atkActiveTableLineSelect |
|
|
utkSort
|
|
itkDirToColumnType \"$dirName\" | atkActiveTableLineSelect |
|
|
utkSort
|
|
+
|
|
}
|
|
|
|
type a
|
|
|
|
b()
|
|
{
|
|
cat /etc/passwd | cat - <<-'+' | tr -s " "
|
|
more
|
|
passwords
|
|
from
|
|
the
|
|
file
|
|
+
|
|
}
|
|
|
|
type b
|
|
|
|
c()
|
|
{
|
|
cat /etc/passwd | tr -s " " | cat - <<-'+' | cat - <<-'foo'
|
|
more
|
|
passwords
|
|
from
|
|
the
|
|
file
|
|
+
|
|
last
|
|
bunch
|
|
of
|
|
words
|
|
foo
|
|
}
|
|
|
|
type c
|