dotnet-cmdref 1.1.4

dotnet tool install --global dotnet-cmdref --version 1.1.4
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local dotnet-cmdref --version 1.1.4
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=dotnet-cmdref&version=1.1.4
nuke :add-package dotnet-cmdref --version 1.1.4

dotnet-cmdref

A dotnet tool to store your commands for future reference. Use it to

  • recall long commands you tend to forget
  • build a reference library of commands

Install

The command to install the tool can be found on the NuGet page.

The tool can be invoked with cmdref.


Usage

The tool displays a list of actions.

Create
View
Update
Delete
Show storage file path
Exit

When creating a command, the user will be prompted for the following:

  1. Command Name - A short but descriptive name of the command
  2. Platform - Which platform the command is related to, such as dotnet cli, docker, or windows. Commands of the same platform will be listed together in alphabetical order when selecting which one to view/update/delete. Use the same platform in terms of to case/symbols for neat organization of commands.
  3. Description - A longer description explaining the command.
  4. Command - The command itself. Multiline commands currently not supported but contributions are welcome.

All commands are stored in a .json file in a local app config directory named cmdref.

This file can be backed up or copied to other machines to access your saved commands. It is intentionally kept in a pretty-printed json format so it can also be edited manually by a user.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
1.1.4 234 10/5/2023
1.1.3 458 8/23/2022
1.1.2 489 4/12/2022
1.1.1 440 4/11/2022
1.1.0 450 4/7/2022

v1.1.3
     - Fixed issue with splitting a string with hiphens in the command name.
     v1.1.2
     - Fixed a couple typos in readme and project metadata
     v1.1.1
     - Created action for displaying storage file path
     - Updated README.md