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
#!/bin/bash | |
# | |
# Show which branches the current branch contains | |
# | |
current_branch=$(git branch |grep ^* |sed 's/^[*]*\s*//') | |
branches_file=$(mktemp) | |
git branch |sed 's/^[*]*\s*//' > $branches_file | |
while read branch; do |
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
Now lives here: https://github.com/nathanielwarner/flightgear-photoscenery/blob/master/create_bbox.pl |