From 2aca5fb2177c9d004504c2578943011bf05de0d2 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sun, 23 Aug 2020 16:08:30 -0400 Subject: Add versions script --- home/.local/bin/versions | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 home/.local/bin/versions (limited to 'home/.local/bin/versions') diff --git a/home/.local/bin/versions b/home/.local/bin/versions new file mode 100755 index 00000000..25e5ff72 --- /dev/null +++ b/home/.local/bin/versions @@ -0,0 +1,9 @@ +#!/bin/sh +set -u + +for repo in ~/src/git/*; do + version=$(git -C "${repo}" describe --dirty 2>/dev/null) + if [ $? -eq 0 ]; then + echo "${repo##*/}-${version#v}" + fi +done | sort -nr -t '-' -k 3 | column -t -s '-' -- cgit 1.4.1 lected='selected'>master dontfiles
summary refs log tree commit diff
path: root/port/file2c/.gitignore (unfollow)
Commit message (Expand)Author
10 hoursCope with not having an EXIF infoJune McEnroe
10 hoursResize using target pixel counts for consistencyJune McEnroe
13 hoursAdd The Girl Who Was Convinced...June McEnroe
32 hoursAdd photos from May 31June McEnroe
32 hoursUse monospace on photo pagesJune McEnroe
33 hoursPut lens and (future) film at the tops of photo pagesJune McEnroe
2024-05-22Remove use of sysexits.hJune McEnroe
2024-05-22Add photo descriptions from 05-03 and 05-06June McEnroe
2024-05-21Fix = precedence in whenJune McEnroe