mirror of
https://github.com/wifinigel/MikrotikScripting.git
synced 2025-07-13 11:34:32 +02:00
10 lines
314 B
Text
10 lines
314 B
Text
# filename: ch5-03-long-line.rsc
|
|
|
|
# Here is a long line
|
|
:put [/interface ethernet find where name~"ether" running true rx-fcs-error=0];
|
|
|
|
# Here is same line across multiple lines
|
|
:put [/interface ethernet find where \
|
|
name~"ether" \
|
|
running true \
|
|
rx-fcs-error=0];
|