Skip to content

Instantly share code, notes, and snippets.

@Intey
Created October 1, 2015 08:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Intey/36dff8891fcd32a23cb9 to your computer and use it in GitHub Desktop.
Save Intey/36dff8891fcd32a23cb9 to your computer and use it in GitHub Desktop.
helpful shell command pipe
# dirs that childs of some_dir and their childs.
find some_dir -mindepth 1 -maxdepth 2 -type d
# though pipe, send it to ls to display permissions, without read content of given dirs
xargs ls -ldF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment