aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ankarstrom <john@ankarstrom.se>2021-07-02 15:18:34 +0200
committerJohn Ankarstrom <john@ankarstrom.se>2021-07-02 15:18:34 +0200
commit5d4777313eed7a4c777fea2bd316ff233fb59af1 (patch)
treeef24d1c908e0b4d8c93f71fc6107e357d8de15ed
parent52459d675081abc13a502d08d35768338d787867 (diff)
downloadxutil-5d4777313eed7a4c777fea2bd316ff233fb59af1.tar.gz
Add 'git-s' utility
-rwxr-xr-xgit-s20
1 files changed, 20 insertions, 0 deletions
diff --git a/git-s b/git-s
new file mode 100755
index 0000000..cc560d9
--- /dev/null
+++ b/git-s
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+# git-s -- selection-friendly git-status
+
+git status -s | perl -ne '
+ push @{$x{$1}}, $2 if /^(.). (.*)/;
+ push @{$y{$1}}, $2 if /^.(.) (.*)/;
+ END {
+ delete $x{"?"};
+ for ([">" => \%x], ["." => \%y]) {
+ ($n, $h) = @$_;
+ for (sort keys %$h) {
+ next if $_ eq " ";
+ print "$n$_";
+ print " $_" for @{$h->{$_}};
+ print "\n";
+ }
+ }
+ }
+'