This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| OUTPUT_NAME="" | |
| project_manager = resolve.GetProjectManager() | |
| project = project_manager.GetCurrentProject() | |
| if project is None: | |
| print("No se encontró ningún proyecto activo.") | |
| exit() | |
| timeline = project.GetCurrentTimeline() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| lsblk | |
| parted /dev/sda "rm 1" | |
| lsblk | |
| parted /dev/sda "mklabel gpt" | |
| parted /dev/sda "mkpart primary ext4 1M -1" |