for f in dir/*; do
mv -- "$f" "$fSuffix"
done
So all the files in the dir/ will be renamed:
file1.txt --> file1.txtSuffix
file2.png --> file2.pngSuffix
MATLAB applications, tutorials, examples, tricks, resources,...and a little bit of everything I learned ...
for f in dir/*; do
mv -- "$f" "$fSuffix"
done
So all the files in the dir/ will be renamed:
file1.txt --> file1.txtSuffix
file2.png --> file2.pngSuffix
$ aws s3 ls s3://<bucket-name> --recursive | awk '/^2018-11-06/{system("aws s3 cp s3://<bucket-name>/$4 .") }'
``` version: '1' services: man: build: . image: my-alpine:latest ``` Dockerfile: ``` FROM alpine:latest ENV PYTH...