#!/bin/sh

echo "This tool attempts to produces symbolic links from real"
echo "file names to inode dumps made with dumpem.sh."
echo ""
echo "THIS IS OPEN SOURCE SOFTWARE."
echo ""
echo "Philip J. Mucci (mucci@cs.utk.edu)"
echo "http://www.cs.utk.edu/~mucci"
echo ""

for i in *
do
extract_ext3_dir $i
done
exit 0

