Skip to content

Instantly share code, notes, and snippets.

@Smartis2812
Smartis2812 / Create-dotnet-sln.sh
Created September 21, 2023 12:12
Bash script for creating a dotnet solution with console and dll
#!/bin/bash
# Get the name from the input
name=$1
# Create Output folder from name and move into it
mkdir $name
cd $name
# Create a new solution