Skip to content

Instantly share code, notes, and snippets.

@xexu
Last active December 16, 2015 18:29
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 xexu/5477584 to your computer and use it in GitHub Desktop.
Save xexu/5477584 to your computer and use it in GitHub Desktop.
Rescursive list of files
ls -R /path | awk '
/:$/&&f{s=$0;f=0}
/:$/&&!f{sub(/:$/,"");s=$0;f=1;next}
NF&&f{ print s"/"$0 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment