Skip to content

Instantly share code, notes, and snippets.

@daniellowtw
Created May 15, 2020 07:24
Show Gist options
  • Save daniellowtw/7f7352cf3a228a9951bd79a571d06576 to your computer and use it in GitHub Desktop.
Save daniellowtw/7f7352cf3a228a9951bd79a571d06576 to your computer and use it in GitHub Desktop.
powershell stuff
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