我写了一个bash脚本:
#!/bin/bash
function test_echo
{
echo $0
echo $1
echo $2
echo $#
}
test_echo
我尝试:
find test.sh -type f -exec test_echo '{}' \;
或者
find . -type f -exec `./test.sh {}` \;
但它不起作用。
我需要一种从文件夹中扫描文件的方法(我使用 find),并为每个文件调用一个函数( foo_fonction() ),其中参数为文件的完整路径。
find . -type f -exec foo_fonction '{}' \;
以及如何在 foo_fonction() 中有参数(完整路径)?