mirror of
https://github.com/zedsalim/debian-z.git
synced 2025-12-06 11:29:28 +00:00
Initial Commit
This commit is contained in:
parent
f18da1cc25
commit
a5bc6b13c5
96 changed files with 6936 additions and 0 deletions
17
config/scripts/python/new_project.sh
Executable file
17
config/scripts/python/new_project.sh
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
#!/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
|
||||
Loading…
Add table
Add a link
Reference in a new issue