aboutsummaryrefslogtreecommitdiff
path: root/lddtree
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2015-04-08 03:18:53 -0400
committerB. Watson <yalhcru@gmail.com>2015-04-08 03:18:53 -0400
commit122f3c401f23f84799802c7b9667bda222646487 (patch)
treebc77cc44c516eac71b2d6490574fd32a5b5efd65 /lddtree
downloadmisc-scripts-122f3c401f23f84799802c7b9667bda222646487.tar.gz
initial commit
Diffstat (limited to 'lddtree')
-rwxr-xr-xlddtree7
1 files changed, 7 insertions, 0 deletions
diff --git a/lddtree b/lddtree
new file mode 100755
index 0000000..5a1cd1a
--- /dev/null
+++ b/lddtree
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+for i in "$@"; do
+ echo "$i:"
+ lddsafe -n $i|awk '{ print $3 }'| xargs lddsafe -n | sed 's,^, ,'
+ echo
+done