First commit

This commit is contained in:
git
2023-05-30 13:48:55 +02:00
commit c42c8c09a5
11 changed files with 166 additions and 0 deletions

15
mkskri Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
#echo $1
argv="$1"
if [ -v $argv ]
then
echo 'Missing name of script. Exiting...'
exit
fi
echo "#!/bin/bash" > $1
chmod +x $1
nano $1