Skip to content

Instantly share code, notes, and snippets.

@joshy
Created February 17, 2021 12:21
Show Gist options
  • Save joshy/9629c24f8c2fb1b4d66d7a58f40fabf3 to your computer and use it in GitHub Desktop.
Save joshy/9629c24f8c2fb1b4d66d7a58f40fabf3 to your computer and use it in GitHub Desktop.
nushell examples
# nushell 0.27
# find small files and delete them
ls **/LWS* | where size < 16mb | each { rm $it.name }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment