Skip to content

Instantly share code, notes, and snippets.

@cicorias
Created December 13, 2016 20:35
Show Gist options
  • Save cicorias/3ad50dccacbb4f21bac2e4bbe695bba7 to your computer and use it in GitHub Desktop.
Save cicorias/3ad50dccacbb4f21bac2e4bbe695bba7 to your computer and use it in GitHub Desktop.
Tree for macOS
#!/bin/bash
SEDMAGIC='s;[^/]*/;|____;g;s;____|; |;g'
if [ "$#" -gt 0 ] ; then
dirlist="$@"
else
dirlist="."
fi
for x in $dirlist; do
find "$x" -print | sed -e "$SEDMAGIC"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment