Created
April 19, 2025 21:51
-
-
Save raspberrypisig/b482170166e8326c72c4ee89f2f6272f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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