Skip to content

Instantly share code, notes, and snippets.

View hbeni's full-sized avatar
😃

Hbeni hbeni

😃
View GitHub Profile
@hbeni
hbeni / therion-statistics-scrapauthors.sh
Created March 8, 2025 18:34
Therion: Generate statistics on scrap drawing authors
#!/bin/bash
#
# Generate statistics for scraps.
#
# It will walk the directory tree recursive and search
# for th2-files and evaluate the -author tag.
#
# Usage: just call the bash script from the directory you want to generate
# statistics from.
# If you give arg1, this diectory will be the rot instead.
@hbeni
hbeni / git-branch-includes.sh
Created April 27, 2021 06:28
GIT command: show branches the current branch contains
#!/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
@hbeni
hbeni / ortophoto-fetch-bbox.pl
Last active January 14, 2021 08:54
FGFS photoscenery bulk download
Now lives here: https://github.com/nathanielwarner/flightgear-photoscenery/blob/master/create_bbox.pl