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

26 lines
210 B
Bash
Raw Permalink Normal View History

2023-06-20 17:45:22 +01:00
#!/bin/bash
2023-06-25 11:20:47 +01:00
cd /home/$USER/Documents/c_projects
2023-06-20 17:45:22 +01:00
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