Home > Enterprise >  Unknown options error when trying to run aws s3 copy command
Unknown options error when trying to run aws s3 copy command

Time:10-29

Unknown options: /fls/src_inp_file/test/test_path/test_sub_path/test/abc/std/full/notifier_20221026235214.dat,/fls/src_inp_file/test/test_path/test_sub_path/test/abc/std/full/notifier_20221027153919.dat,/fls/src_inp_file/test/test_path/test_sub_path/test/abc/std/full/notifier_20221028115903.dat,s3://alb-jp-albedl-alb-ext/s3path/s3Main/s3Sub/ALB_ABA/20221028/

Getting unknown option error when trying to run the AWS s3 copy command.

aws s3 cp $src $s3_tgt --profile albd_dev_user;

I googled it and understand that there is some space issue. I'm not sure where to fix.

Can anyone guide me on this?

CodePudding user response:

Please put a space (instead of comma) between source and destination(here s3)

  • Related