Skip to content

Instantly share code, notes, and snippets.

@felickz
Created October 25, 2021 20:38
Show Gist options
  • Save felickz/fec0eeb4bcf844f53ca2abfe556075b8 to your computer and use it in GitHub Desktop.
Save felickz/fec0eeb4bcf844f53ca2abfe556075b8 to your computer and use it in GitHub Desktop.
Write script that prints out odd numbers between 1 and 10
1..10 | %{ $_ % 2 -eq 0 ? $null : (Write-Host "$_") }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment