I tried creating a custom command that could be executed using dotnet
driver. Followed the steps mentioned in the documentation.
- Created a command with the name
dotnet-demo
- Added basic
echo "Welcome to Custom Command"
script inside the command - Enabled execution on this file using
chmod +x dotnet-demo
- Added this script to the path by enabling symlink using
ln -s dotnet-demo /usr/local/bin
- Running the command using
dotnet demo
is not giving any errors. Neither it produces any output.
Not able figure out, what I am missing here ?