For when your projects need a little more organization.
mkdir my_project
cd my_project
echo "This is my project" > README.md
Voila! You've created a new directory, switched into it, and written a README file. Your project is off to a great start!
Now, go forth and organize your project with the power of mkdir!
Back to Bash Function Examples