我想在 awk 脚本中更改工作目录:
...
path="./some/path"
system("pwd") ; \
current_dir=system("pwd") ; \
pushd_cmd="pushd " path ; \ # a "cd" doesn't work too
print pushd_cmd ; \
system(pushd_cmd) ; \
system("pwd"); \ # the same directory as before
type="xml"
ls_cmd = "ls *." type; # so I can't find the files. Specifying with "./some/path/*.xml" doesn't work too (without trying to change the working directory)
...
有人知道为什么系统对我没有影响吗?