Getting errors trying to analyze pcap file in offline mode

hello everyone. beginner here,
this is what i get when i try to feed suricata with a pcap file.
how can i get rid of these errors. any help would be much appreciated.

sudo suricata -c /etc/suricata/suricata.yaml -r dns-remoteshell.pcap suri/
17/4/2023 – 02:13:54 - - This is Suricata version 6.0.10 RELEASE running in USER mode
17/4/2023 – 02:13:54 - - [ERRCODE: SC_WARN_FLOW_EMERGENCY(160)] - emergency timeout value 100 for ‘established’ must be below regular value 30
17/4/2023 – 02:14:11 - - [ERRCODE: SC_ERR_BPF(127)] - bpf compilation error can’t parse filter expression: syntax error for dns-remoteshell.pcap
17/4/2023 – 02:14:11 - - [ERRCODE: SC_ERR_PCAP_DISPATCH(20)] - Failed to init pcap file dns-remoteshell.pcap, skipping
17/4/2023 – 02:14:11 - - all 5 packet processing threads, 4 management threads initialized, engine started.
17/4/2023 – 02:14:11 - - [ERRCODE: SC_ERR_INVALID_ARGUMENT(13)] - pcap file reader thread failed to initialize
17/4/2023 – 02:14:11 - - Signal Received. Stopping engine.

The last part of the command line suri/ is interpreted as a bpf as its not preceded by an option flag. Did you mean to use -l?

i mean by suri/ the destination directory for log files.
should i remove this part from the command line?
im using suricata 6.0.10.

thank you sir. got zero errors after removing the last part of the command line (suri/) as you specified.