Simple bash script. It allows to automatically create a .sh file, make it executable and open in vim editor. Made by p07010k in August 2020.
For example, you want to create a bash file myscript.sh you run the newshscript.sh with your script name as argument:
$ ./newshscript.sh myscript.sh
In result, your new .sh file with shebang in it is opened in wim, so you can edit it:
#!/usr/bin/bash
~
~
...