Help for this page

Select Code to Download


  1. or download this
    R:\>set test=hello && echo %test%
    %test%
    
  2. or download this
    R:\>set test=hello && cmd /c "echo %test%"
    hello
    
  3. or download this
    use strict;
    use warnings;
    ...
    }else{
        system("test=hello; export test; echo \$test");
    }