#!/bin/bash
for f in *.dat
do
gdrive --config "config.json" upload $f
done
Ou um one-liner bash:
[mehlsec@localhost ~]$ for f in *.dat; do gdrive --config "config.json" upload $f; done
Isso fará o upload de todos os arquivos .dat em seu diretório atual, um após o outro.