Configuring AWS credentials Downloading files from S3 How To Specify Credentials When Connecting To AWS S3 Using Boto3? Amazon S3 buckets file_transfer.py
#!/bin/bash # February 3rd, 2018 export Me=$(basename $0 .sh) export fecha_actual=`date "+%Y-%m-%d_%H%M%S"` inputFile=notas.txt pattern="find" # cut the file here echo "$inputFile" # q: show the file until the pattern, including it. # Q: show the file until the pattern, NOT including it. sed "/$pattern/Q" $inputFile
git granch # local branches git branch -r # remote branches git branch -a # local and remote branches git status # current branch status git checkout develop # go to "develop" branch git checkout hotfix/tk_01_inv # go to "hotfix/tk_01_inv" branch git pull # download the remote changes into current branch git add . # save all changes git commit -m 'some comment' # commit into local branch git push # public my local changes into remote git repository git merge : "develop" branch gets changes from "hotfix/tk_01_inv" branch git branch -a # local and remote branches git status git checkout hotfix/tk_01_inv # branch with new changes git pull gi push git checkout develop git pull git status git merge --no-ff hotfix/tk_01_inv git status git push