mirror of
https://github.com/zedsalim/debian-z.git
synced 2025-12-06 11:29:28 +00:00
26 lines
208 B
Bash
26 lines
208 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
cd /home/zed/Documents/c_projects
|
||
|
|
|
||
|
|
ls
|
||
|
|
|
||
|
|
echo "Enter the file's name: "
|
||
|
|
|
||
|
|
read name
|
||
|
|
|
||
|
|
mkdir $name
|
||
|
|
|
||
|
|
cd $name
|
||
|
|
|
||
|
|
touch main.c
|
||
|
|
|
||
|
|
echo "#include <stdio.h>
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
|
||
|
|
return 0;
|
||
|
|
}" > main.c
|
||
|
|
|
||
|
|
vim main.c
|