mirror of
https://github.com/zedsalim/debian-z.git
synced 2025-12-06 19:39:28 +00:00
18 lines
151 B
Bash
18 lines
151 B
Bash
|
|
#!/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
|