commit 6facd92be8d7b36c06abd2ed9f6cf352cc3c6a16 parent a302de9efee5eb10414037d8c651c0efa7eb89c6 Author: Anders Damsgaard <anders@adamsgaard.dk> Date: Wed, 8 Apr 2020 13:38:33 +0200 Open all arguments to o() as individual files Diffstat:
M | .profile | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.profile b/.profile @@ -50,7 +50,9 @@ o() { echo "unknown target type" >&2 fi else - plumb "$@" + for t in "$@"; do + plumb "$t" + done fi }