diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-08-07 21:45:20 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-08-25 22:55:25 +0200 |
commit | fc40dfc41e8b3fbbe830846499ccce122930b235 (patch) | |
tree | 651e96119b5f0a1ba66afc200a465d5009124a3b /test/asset/shell/pipe.et | |
parent | c07525ac4692a2ee9c76bd0bd53c195c8164480f (diff) |
Changelog: Implemented pipes in shell scripts
Diffstat (limited to 'test/asset/shell/pipe.et')
-rw-r--r-- | test/asset/shell/pipe.et | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/asset/shell/pipe.et b/test/asset/shell/pipe.et new file mode 100644 index 0000000..64dcb07 --- /dev/null +++ b/test/asset/shell/pipe.et @@ -0,0 +1,5 @@ +test Pipe: + node n + shell on n as sh: + echo abcd | grep -o '[bc]*' + echo abcd | grep -o '[bcd]*' | grep -o '[ab]*' |