7 lines
144 B
Text
7 lines
144 B
Text
define-command -docstring %{
|
|
Run the given shell command. Display its output in an info modal.
|
|
} -params 1.. sh %{
|
|
info %sh{
|
|
eval "$@"
|
|
}
|
|
}
|