system("my_program arg1 arg2 arg3"); #### system("my_program", "arg1", "arg2", "arg3"); #### msg username "some text" #### my $txt = 'sample text with some / special /w characters > xyz'; system('msg', 'username', $txt); #### my $txt = '/w sample text with some / special /w characters > xyz'; system('msg', 'username', $txt); #### msg username /w sample text with some / special /w characters > xyz