From b4d882d7431e407db4ab95dd818db97f9f76a173 Mon Sep 17 00:00:00 2001 From: Elkin Aguas Date: Mon, 13 May 2024 18:00:29 +0200 Subject: [PATCH] Run command quick fix --- clir/command.py | 1 + 1 file changed, 1 insertion(+) diff --git a/clir/command.py b/clir/command.py index 84054f6..59e746b 100644 --- a/clir/command.py +++ b/clir/command.py @@ -102,6 +102,7 @@ def run_command(self): command = _replace_arguments(command) if uid and command: print(f'[bold green]Running command:[/bold green] {command}') + os.system(command) subprocess.Popen(['bash', '-ic', 'set -o history; history -s "$1"', '_', command]) def copy_command(self):