フォルダ内の全てのPCAPファイルをtsharkに処理させたいと思います。

フォルダ(/log)の中に、A.pcapng , B.pcapng というファイルがあります。

#!/bin/sh
for filepath in /log 
do
tshark -r $1 -Y "wlan.fcs_bad == 0 && wlan.ta == 00:00:00:00:00:00" fields -E separator’;’ -e frame.time_relative  -e wlan.seq —e tcp.seq -e radiotap.datarate -e radiotap.mcs.index -e radiotap.channel.type > $1-ta.csv
tshark -r $1  -Y "wlan.fcs_bad == 0 && wlan.ra == 00:00:00:00:00:00" fields -E separator’;’ -e frame.time_relative  -e wlan.seq -e tcp.seq -e radiotap.datarate -e radiotap.mcs.index -e radiotap.channel.type > $1-ra.csv
done
read wait

$1にA.pcapng , B.pcapng が自動的に入るようにしたいのですが、どう引数を渡せばいいでしょうか。