Command Detail - S
script
sleep
or
or just:
...will sleep for 3 seconds
sort
sort -u
The closest PowerShell equivalent to the unix sort -u
is get-unique
Note: this only works as far I can see if you sort it first
Note 2: get-unique IS case sensitive
sql
This isn't really a Powershell equivalent of a unix command, but in case it's useful, to call Sqlserver's implementation of the sql command line from Powershell you can use invoke-sqlcmd
You need to have the sql module loaded for this to work, or be running the Powershell console from within SSMS
Last updated