标签: shell
我有下面的shell脚本,只要文件名没有空格,它就可以正常运行。如何增强它,使其也可以处理带空格的文件名。
for f in $@/*.csv do head -n 2 $f done