7 lines
78 B
Text
7 lines
78 B
Text
|
sub execute(IN string $command)
|
||
|
{
|
||
|
@echo on;
|
||
|
`$command`;
|
||
|
@echo off;
|
||
|
}
|