Print realpath to stdout # $Header: /CVSROOT/getrealpath/DESCRIPTION,v 1.2 2011-10-24 04:09:31 tino Exp $ # # This comment must be followed by a blank line! # # $Log: DESCRIPTION,v $ # Revision 1.2 2011-10-24 04:09:31 tino # Commenting new arguments # Actually there is a "realpath" utility for Debian which has some different features. However I need tools which are optimized for pipe usage, like
find . -type f -print0 |
getrealpath -0 |
while read -r name;
do
  eval eval name="\$'$name'";
  ...;
done