16GB iPod Touch $339 - Save $59

Tree Command for Mac

February 29th, 2008

tree command for MacThis post is a follow up to Murphy’s post on retrieving a remote file by email. The method described in that post requires you to know the path of the file you’re retrieving. You can use the information in this post to auto-generate a text file with the paths to all your files. Retrieve that file and you’ll have all the information you might need.For some people the best thing about this post will be this:

find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'

Enter that line in Terminal, hit return on your keyboard, and you’re pretty close to the tree command you loved so much in Windows. (Thanks to the unix.com forums for help with the find and sed commands. ) You can copy and paste the command, or download a shell script containing it here. You’ll need to make it executable.

Murphy posted last week about how to retrieve a file by email. The catch was that you needed to know the path of the file. This screencast will show you how to generate a text file listing all your files in a tree format.If you prefer, you can use this command:

ls -R

That will also display files and folders, but the format is more conventional. Either command will accomplish our goal.

In the screencast Murphy has the find and sed command listed above inside a shell script. The output is redirected to a text file. You can retrieve that text file by email, just like you would any other file.

If you prefer, create a second Applescript like the one in this post. You could alter it to always send a hard-coded file: the file that lists all your files.

In the screencast, Murphy uses Lingon to configure launchd, which handles scheduling tasks you may have used cron for in the past.

For more information on creating a shell script and making the script executable visit this post. If you want to know more about sed (and awk) there’s a whole book to read.

Watch Now | Permalink
del.icio.us Digg Furl Reddit StumbleUpon

Why does Murphy use Bluehost?

5 Responses to “Tree Command for Mac”

  1. tvscifi.com Says:

    I get a syntax error with the command and shell script.

    -bash: syntax error near unexpected token `|’

    I’m running 10.5.2

  2. Murphy Says:

    tv -

    Try now, I think Wordpress did something to the text. You should be able to copy and paste it now.

  3. Dave Says:

    How would i get ls -R to output to a text file?

    Also is there anyway the script could be altered for files too large for emails and have them uploaded via for instance quickshareit and the download link then sent?

    regards

  4. Murphy Says:

    dave -

    add the following to the end of a command to redirect the output to a text file

    >textfile.txt

    As for your other questions, yes, something like that could be done. I’m not familiar with quickshareit but there are plenty of alternative methods that could be scripted.

  5. Dave Says:

    Hi again

    Ive been using it and it works great but i wanna change a little bit

    i know this command creates a textfile with the full path of all the items in the current direcotyr. But how do i change it so it goes into all the subfolders

    ls -l | sed ‘1d; s/\([^ ]* *\)\{7\}/’”${PWD//\//\\/}”‘\//; s/^\/\//\//; s/ -> .*//’ > text.txt

Leave a Reply

Text Link Ads