debian-z/config/scripts/python/new_project.sh

18 lines
151 B
Bash
Raw Normal View History

2023-06-20 17:45:22 +01:00
#!/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