mirror of
https://github.com/ScoopInstaller/Scoop.git
synced 2026-09-04 12:35:49 +00:00
10 lines
572 B
PowerShell
10 lines
572 B
PowerShell
.\supporting\command_info -am "testing the params" 2>&1
|
|
.\supporting\command_info.ps1 -am "testing the params"
|
|
( & '.\supporting\command_info' -am "testing the params" ) | sort-object
|
|
( & '.\supporting\command_info.ps1' -am "testing the params" ) | sort-object
|
|
( .\supporting\command_info -am "testing the params" ) | sort-object
|
|
( .\supporting\command_info.ps1 -am "testing the params" ) | sort-object
|
|
|
|
get-childitem | .\supporting\command_info.ps1 -am "testing the params" | sort-object
|
|
|
|
.\supporting\command_info "how about a string with an 'apostrophe in its text?" |