mirror of
https://github.com/wifinigel/MikrotikScripting.git
synced 2025-07-13 19:44:29 +02:00
11 lines
314 B
Text
11 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];
|