各位好,我要將目錄同步到 Google cloud storage,但要避免某些目錄,改了很多寫法他還是會去掃到,請問正確寫法是什麼
gcloud storage rsync -r /data/www gs://www --exclude="/data/www/test/*"
gcloud storage rsync -r /data/www gs://www --exclude="^data/www/test$"
gcloud storage rsync -r /data/www gs://www --exclude="/data/www/test/"
gcloud storage rsync -r /data/www gs://www --exclude="^data/www/test*"
不管怎麼寫他還是會去掃 /data/www/test 目錄