From 1c54eb7ef57f94ec56d86e1747248010369304d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Sat, 19 Jun 2021 11:44:24 +0200 Subject: Add README --- README | 16 ++++++++++++++++ flip | 3 --- g | 2 ++ 3 files changed, 18 insertions(+), 3 deletions(-) create mode 100644 README diff --git a/README b/README new file mode 100644 index 0000000..47299fe --- /dev/null +++ b/README @@ -0,0 +1,16 @@ +xutil is a collection of more or less useful, more or less +idiosyncratic extra UNIX tools. + +In my opinion, the most generally useful ones are + + ce center text + ep edit pipe + g poor man's ack + inc increment numbers in lines + p/P maybe view output in pager + +For similar programs, see + + dwim http://git.ankarstrom.se/dwim + repl http://git.ankarstrom.se/repl + vp http://git.ankarstrom.se/vp diff --git a/flip b/flip index da55b4b..614bc67 100755 --- a/flip +++ b/flip @@ -1,6 +1,3 @@ #!/usr/bin/perl -use strict; -use warnings; - exec (shift @ARGV, pop @ARGV, @ARGV); diff --git a/g b/g index 0a22892..7c55707 100755 --- a/g +++ b/g @@ -1,5 +1,7 @@ #!/bin/sh +# g -- poor man's ack + IFS=' ' -- cgit v1.2.3