Files
TimWhite 634e6db59d Refactoring
Refactoring
2019-12-03 15:18:49 +08:00

20 lines
408 B
Plaintext

menu "CMD" {
item "Set Command" {
local('$bid');
foreach $bid ($1){
prompt_text("filePath", $filePath, {
$filePath = $1;
return $filePath;
});
}
}
item "Execute Command"{
local('$bid');
foreach $bid ($1){
bshell($1, "$filePath");
}
}
}