Divide String Parameter Into Different Lines in Perl -


i have perl line long , want divide 2 lines readability purposes.

such

system("someunixcommand paremeter1 parameter2 ... parametern"); 

can in perl?

system("someunixcommand paremeter1 parameter2 parameterk"        "parameterk+1 ... parametern");  

one way concatenate quoted strings:

system("someunixcommand paremeter1 parameter2 parameterk " .        "parameterk+1 ... parametern");  

Comments

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -