Skip to content

Instantly share code, notes, and snippets.

@kparkov
Created November 10, 2020 13:39
Show Gist options
  • Save kparkov/49e26cdadaf972914dd33cb1e5c1b868 to your computer and use it in GitHub Desktop.
Save kparkov/49e26cdadaf972914dd33cb1e5c1b868 to your computer and use it in GitHub Desktop.
Powershell show all properties of the first five results in a list of all markdown files recursively #powershell
dir *.md -Recurse | Select-Object -first 5 | Select-Object -Property *
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment