Created
November 10, 2020 13:39
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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