mirror of
https://github.com/aclist/dztui.git
synced 2026-08-28 02:37:20 +02:00
6 lines
96 B
Python
6 lines
96 B
Python
import shlex
|
|
|
|
|
|
def concat_bash_args(command: str) -> list[str]:
|
|
return shlex.split(command)
|