From 09bd115ad07f7a4c4600d8ce3256a370db5f8016 Mon Sep 17 00:00:00 2001
From: Francisco Mendonca <francisco.mendonca@hesge.ch>
Date: Thu, 12 Sep 2024 11:15:08 +0200
Subject: [PATCH] Fix bug with all python program calls

---
 README.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index 4b1925f..e81338c 100644
--- a/README.md
+++ b/README.md
@@ -33,35 +33,35 @@ Create a snapshot of the current state of the virtual machine using the provided
 ### Create a new virtual machine:
 ```python
 # Run the Python script to create a VM
-python lab-os-cli.py create
+python lab-os.py create
 ```
 This will return a unique ID for the newly created virtual machine.
 
 ### Start a virtual machine:
 ```python
 # Start the virtual machine using the returned ID
-python lab-os-cli.py start <ID>
+python lab-os.py start <ID>
 ```
 This starts the virtual machine associated with the provided **ID**.
 
 ### Stop a virtual machine:
 ```python
 # Stop the virtual machine using the returned ID
-python lab-os-cli.py stop <ID>
+python lab-os.py stop <ID>
 ```
 This stops the virtual machine associated with the provided **ID**.
 
 ### Create a snapshot of a virtual machine:
 ```python
 # Create a snapshot using the VM ID
-python lab-os-cli.py snapshot <ID>
+python lab-os.py snapshot <ID>
 ```
 This creates a snapshot of the virtual machine associated with the provided **ID** and returns a unique **ID** for the snapshot.
 
 ### Destroy a virtual machine:
 ```python
 # Destroy the virtual machine using the returned ID
-python lab-os-cli.py destroy <ID>
+python lab-os.py destroy <ID>
 ```
 This destroys the virtual machine associated with the provided **ID**.
 
-- 
GitLab