debian-z/config/scripts/python/new_project.sh
2023-06-20 17:45:22 +01:00

17 lines
151 B
Bash
Executable file

#!/bin/bash
cd /home/zed/Documents/python_projects
ls
echo "Enter the file's name: "
read name
mkdir $name
cd $name
touch main.py
code main.py