With the recent upgrade to Flash 10 (or maybe it was a distribution), I and many others can no longer copy Flash movies from / tmp. However, I found the following solution:
First do:
lsof | grep Flash
which should return the output as follows:
plugin-co 8935 richard 16w REG 8,1 4139180 8220 /tmp/FlashXXq4KyOZ (deleted)
Note. Here you can see the problem. There is a file pointer in the / tmp file.
However, you can capture the file using the cp command:
cp /proc/
where the 1st number is the identifier of the process (8935), and the second if the next number (16, from 16w).
This currently works, but this requires a few manual steps. To automate this, I suppose I can pull out the PID and fd number and dynamically insert them into the cp command.
: ? , $1 .. , ?
. pidof plugin-container, PID, ( , - ).