mirror of
https://github.com/wifinigel/MikrotikScripting.git
synced 2025-12-06 10:39:29 +00: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];
|