Last active
October 9, 2018 13:55
-
-
Save excenter/0c84214367118cc27f5dd1b7e3e1e746 to your computer and use it in GitHub Desktop.
pull file extensions off of file names
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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