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