Makefile: add pickrand
[cmccabe-bin] / ql.sh
1 #!/usr/bin/env bash
2
3 #
4 # This is a script I wrote to put quotes around lines of text.
5 # A typical use might be something like this:
6 #       find | ql.sh | xargs -l grep --with-filename foo
7 #
8 # Of course, one could accomplish the same thing with:
9 #       find -print0 | xargs -0 -l grep --with-filename foo
10 #
11 # but this at least illustrates the principle.
12 #
13 # Colin McCabe
14 #
15
16 sed 's.^.".' | sed 's.$.".'