awk中调用shell的自定义函数

#!/bin/bash
hello(){
echo "helloworl $1";
}
export -f hello
awk 'BEGIN{"hello"|getline test;print test }'
awk 'BEGIN{system("hello \"name\"")}'


你可能感兴趣的:(shell)