I know that this is a little dumb, but I've setup a custom profile that I end with a Clear-Host
commandlet for Powershell and I hate that output from the previous commandlets flashes on the screen. I decided to send the output to null in an attempt to suppress the output, e.g.:
New-Alias -Name note -Value notpad.exe > $null
It seems to be working, but I'm not entirely certain as to what the command is doing. Is it okay to do this?