Help for this page

Select Code to Download


  1. or download this
    system("my_program arg1 arg2 arg3");
    
  2. or download this
    system("my_program", "arg1", "arg2", "arg3");
    
  3. or download this
    msg username "some text"
    
  4. or download this
    my $txt = 'sample text with some / special /w characters > xyz';
    system('msg', 'username', $txt);
    
  5. or download this
    my $txt = '/w sample text with some / special /w characters > xyz';
    system('msg', 'username', $txt);
    
  6. or download this
    msg username /w sample text with some / special /w characters > xyz