alias to real
Make aliased files the real file
for f in $(find . -type l -maxdepth 1);
do cp --remove-destination $(readlink $f) $f;
done;
Make aliased files the real file
for f in $(find . -type l -maxdepth 1);
do cp --remove-destination $(readlink $f) $f;
done;