> > > How do I go about locating that file? Was it even a file, or was it > buffered in memory somewhere, and killing the instance removed it? > > it is very possible it was all in memory. /tmp is a popular place for programs to store temporary files (which are not always deleted). if you're interested, you can also dig in by using tools like strace and /proc.
use ps to find the pid of the transcription program. then, in a terminal, do: ls -la /proc/(pid goes here)/fd that should give you a list of the files currently open by that process. -wes _______________________________________________ PLUG mailing list [email protected] http://lists.pdxlinux.org/mailman/listinfo/plug
