12 lines
304 B
Markdown
12 lines
304 B
Markdown
|
|
# if we have mono
|
|
|
|
# get an app/executable
|
|
wget -O nuget.exe https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
|
|
# create shell alias
|
|
alias nuget="mono /path/to/your/nuget.exe"
|
|
# resource the shell
|
|
source ~/.bashrc # Or the appropriate file name if not using bashrc
|
|
# run the new command
|
|
nuget
|