ShellTree 2: Analyzing the One Line Implementation Script

This post is part of an educational series on building a shell script to graphically display the structure of a directory. Previously We broke down Dem Pilafian’s one line command to display a tree of a directory The Script #!/bin/sh ####################################################### # UNIX TREE # # Version: 2.3 # # File: ~/apps/tree/tree.sh # # #…

ShellTree 1: Analyzing a one Line Command Implementation

This post is part of an educational series on building a shell script to graphically display the structure of a directory. While you are surfing your linux in command line, sometimes you want to be able to see the directory structure spread out in your terminal. I personally don’t know of any native command that…