|
From: | Budi |
Subject: | Why tail coreutil cannot work as its input is from tee |
Date: | Mon, 6 Sep 2021 07:38:03 +0000 |
How come tail coreutil cannot work as its input is from tee $ echo -e '9\n4\n3\n2\n8\n7\n3\n1' |tail -1 1 But : $ echo -e '9\n4\n3\n2\n8\n7\n3\n1' |tee >(head -1) |tail -1 9 Please help explain
[Prev in Thread] | Current Thread | [Next in Thread] |