Run Shell Script
October 14, 2020
We need a shell script to run
- This is from this great blog that shows you how to quickly create a merge conflict
Steps
- Create a folder called
shell-script-practice
$ cd shell-script-practice
- Create a file that will be your shell script
$ touch create-merge-conflict.sh
- You need to give the file execute permissions
chmod 755 create-merge-conflict
- Execute the script
./ create-merge-conflict
That’s it!