如何使用echo(或任何其他bash命令)添加这两个字节的代码?
for i in $(ls *.sql) do cp "$i" "$i.temp" printf '\xFF\xFE' > "$i" cat "$i.temp" >> "$i" rm "$i.temp" done