It's very easy to make some words bold and other words italic with Markdown. You can even link to Google!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Script to generate new project from the RedNoise template on Linux. | |
| # You need to put the RedNoise.zip at `./Template/RedNoise.zip` | |
| # How to use: | |
| # ./new.sh NameOfProject | |
| unzip ./Template/RedNoise.zip -d tmp | |
| mv ./tmp/RedNoise "./${1}" |
