-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This is working as intended. The
It's possible to run the pipeline in a single line, but it requires the knowledge of which layers to merge:
It's possible to automatically group layers by color, but the related pipeline is rather complicated IIRC (it's somewhere in the cookbook). If you want to avoid the intermediate file, you could pipe the two command together (if that works on on windows):
Note the use of |
Beta Was this translation helpful? Give feedback.
This is working as intended.
The
write
command does not flush the pipeline, so the result of the initialread
+occult
(ie 3 layers) is still in the pipeline by the time you reachforlayer
. The second read just adds (redundant) lines in layer 1 and 2. You can see that for yourself by inserting ashow
command:It's possible to run the pipeline in a single line, but it requires the knowledge of whi…