PHP Classes

File: mac_osx_tree_command.md

Recommend this page to a friend!
  Classes of Kabir Hossain   PHP CodeIgniter Tips Tricks   mac_osx_tree_command.md   Download  
File: mac_osx_tree_command.md
Role: Auxiliary data
Content type: text/markdown
Description: Auxiliary data
Class: PHP CodeIgniter Tips Tricks
Collection of tips and examples to use CodeIgniter
Author: By
Last change:
Date: 1 month ago
Size: 616 bytes
 

Contents

Class file image Download

Save the following script to /usr/local/bin/tree

#!/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

and enjoy

Of course you may have to create ```/usr/local/bin```


. ??? config.dat ??? data ? ??? data1.bin ? ??? data2.sql ? ??? data3.inf ??? images ? ??? background.jpg ? ??? icon.gif ? ??? logo.jpg ??? program.exe ??? readme.txt