Skip to content

Instantly share code, notes, and snippets.

@raspberrypisig
Created April 19, 2025 21:51
Show Gist options
  • Save raspberrypisig/b482170166e8326c72c4ee89f2f6272f to your computer and use it in GitHub Desktop.
Save raspberrypisig/b482170166e8326c72c4ee89f2f6272f to your computer and use it in GitHub Desktop.
$utilsList = @(coreutils --list)
Foreach ($util in $utilsList) {
$util_path = ( -join (".\", $util, ".exe"))
New-Item -ItemType SymbolicLink -Path $util_path -Target "C:\Users\Mohan\AppData\Local\Microsoft\WinGet\Packages\uutils.coreutils_Microsoft.Winget.Source_8wekyb3d8bbwe\coreutils-0.0.30-x86_64-pc-windows-msvc\coreutils.exe"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment