I need to store the full path of a specific file found through find (and successive piped operations on find results). I'm using this:
find "$PWD" . -iname p_*.raw -printf "%Tc %p\n" | sort | cut -f 7 -d " "
However, as it is it produces shortened file paths "$PWD" doesn't seem to have any effect. Is there any way to force it to show full path?