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
#!/usr/bin/env bash | |
# | |
# Just echo everything with Stars Around | |
starprint(){ | |
local INPUT=$* | |
local LENGTH=$(echo "$INPUT" | awk '{print length+4}') | |
line() { for i in $(eval echo "{1..$LENGTH}"); do echo -n '*'; done; echo; } | |
line | |
echo -n "* "; echo -n $INPUT;echo -n " *";echo |
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 -e | |
# | |
# Wrapper to check all the needed gems are installed | |
GL=$(gem list) | |
for gem in $(cat Gemfile | grep -w gem | cut -f2 -d ' '| tr -d "'"); do | |
if ! $(echo $GL | grep -wq $gem); then | |
gem install bundler | |
bundle install | |
break |
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 | |
# | |
# Script for backing up bitnami app and upload tarballs to S3 | |
set -e | |
usage(){ | |
echo "Usage: BITNAMI_APP=<> BITNAMI_DB_PASSWORD=<> S3_BUCKET=<> $0" | |
exit 1 | |
} |
NewerOlder