#!/bin/sh - # # Oliver Fromme # # BSD-style copyright and standard disclaimer applies. # # Create the ``filename.txt'' file for FreeBSD CD-ROMs. # Pretty trivial, actually, but I need it often enough # to put it into a script. # # Usage: # Just cd into the CD-ROM directory and run the script. # touch filename.txt find . -type f \ | sed -n 's_^\./__p' \ | sort \ > filename.txt #--