This file contains hidden or 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
brew doctor | |
brew update | |
brew install -v gpg | |
gpg --full-generate-key | |
gpg --list-secret-keys --keyid-format LONG | |
# https://help.github.com/articles/generating-a-new-gpg-key/ |
This file contains hidden or 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
#/bin/bash | |
newfile () { | |
fname=$1 | |
count=0 | |
while [ -e "$fname" ] | |
do | |
# fname="$1.$((++count)).mp4" | |
fname="$(basename $1 .mp4).$((++count)).mp4" | |
done |
This file contains hidden or 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
#!/bin/bash | |
mkdir -p ../images/concourse | |
for i in {0..15} # Cap at 15 releases adjust as necessary | |
do | |
URL="$(bosh int \ | |
-e bosh-1 \ | |
-d concourse \ | |
./concourse-bosh-deployment/cluster/concourse.yml \ | |
-l ./concourse-bosh-deployment/versions.yml \ |
OlderNewer