Created
May 15, 2020 07:24
-
-
Save daniellowtw/7f7352cf3a228a9951bd79a571d06576 to your computer and use it in GitHub Desktop.
powershell stuff
This file contains hidden or 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
Get-ChildItem '.*' | foreach {$_.Attributes = $_.Attributes -bor "Hidden"} | |
# Hide all files and folders that starts with . | |
# I use this to clean up my home directory. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment