FFMPEG copy video, removing first 90 seconds to a copy file – no transcoding

Iterate through directory, all files will treated as input, export by copy (not transcoding) cutting the first 90 seconds.

1
for f in *; do ffmpeg -ss 00:01:30 -i $f -c copy ../mp4a/$f; done