Path 0.2.2
dotnet tool install --global Path --version 0.2.2
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local Path --version 0.2.2
#tool dotnet:?package=Path&version=0.2.2
nuke :add-package Path --version 0.2.2
path
Path is a command-line tool to manage PATH environment variable on Windows. It's a successor to my PathCleaner project.
installation
Specifying version is required for pre-release projects on NuGet:
dotnet tool install path --global
⚠️warning
Messing with your PATH can easily cause your system to break or your applications to stop running. Use only if you know what you're doing. You've been warned.
why
PATH management in operating systems is inconsistent among platforms (even shells), and it's unnecessarily cumbersome. PATH variable gets cluttered over time too with many orphaned entries unnecessarily creating miniscule but non-zero overhead. This tool is mostly a UX experiment on how to make PATH management from command-line better. Although only Windows is supported currently, the ultimate goal is to make this tool the standard syntax for interacting with paths on any OS.
I also wanted to develop a tool with .NET 6 + System.CommandLine + Spectre.Console to learn more about them. I also learned a lot about GitHub Actions while coding this. Love all of them so far!
usage
path add
Add a directory to user PATH:
path add C:\some\new\path
Want to add it to the machine-level PATH? Run this on an elevated prompt instead:
path add C:\some\new\path --global
path remove
Want to remove all instances of a directory from a PATH with a single command? Here it is:
path remove C:\some\existing\path\
path move
Directories in PATH are searched in the order of addition. Want to move a directory higher up in the PATH? This command will move the directory to the beginning of the PATH:
path move C:\some\new\path top
Want to move a directory after another directory?
path move C:\some\new\path after C:\Windows
or before?
path move C:\som\new\path before C:\Windows
path analyze
Over time, PATH might get cluttered with empty, orphaned folders without any executables in them. Use "analyze" command to find them:
path analyze
Analyze can also automatically fix the problems for you:
path analyze --fix
You might be scared of what fix will do, so you can run the same fix command with the --whatif
argument:
path analyze --fix --whatif
license
MIT license. See LICENSE.md file for details.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
This package has no dependencies.
Version | Downloads | Last updated |
---|---|---|
0.2.2 | 68 | 9/29/2024 |
0.2.1 | 62 | 9/26/2024 |
0.2.0 | 70 | 9/26/2024 |
0.1.3 | 65 | 9/25/2024 |
0.1.2-alpha | 159 | 3/5/2022 |
0.1.1-alpha | 123 | 2/28/2022 |