14 lines
151 B
Text
14 lines
151 B
Text
|
|
foo()
|
||
|
|
{
|
||
|
|
echo < <(cat x1)
|
||
|
|
}
|
||
|
|
|
||
|
|
type foo
|
||
|
|
|
||
|
|
declare -f foo
|
||
|
|
|
||
|
|
echo $(declare -f foo | sed 's:foo:bar:')
|
||
|
|
eval "$(declare -f foo | sed 's:foo:bar:')"
|
||
|
|
|
||
|
|
type bar
|