Skip to content

Instantly share code, notes, and snippets.

@excenter
Last active October 9, 2018 13:55
Show Gist options
  • Save excenter/0c84214367118cc27f5dd1b7e3e1e746 to your computer and use it in GitHub Desktop.
Save excenter/0c84214367118cc27f5dd1b7e3e1e746 to your computer and use it in GitHub Desktop.
pull file extensions off of file names
export INPUT=filename.pdf;
export FOLDER=folderName;
STRIPPED=${INPUT%%.*}
aws s3 cp $INPUT s3://BUCKET/path/$(echo $FOLDER)/$(echo $STRIPPED)_i.pdf --content-disposition inline
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment