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