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 tclsh | |
| # | |
| # repo-report.tcl — Compare ~/github with GitHub remote repos | |
| # Requires: gh (authenticated), git, tclsh 8.6+ | |
| # | |
| package require Tcl 8.6 | |
| set LOCAL_DIR [file normalize "~/github"] | |
| set GH_USER "imsmith" |
OlderNewer