Comment obtenir un chemin absolu en utilisant la commande find.
en fait je lance le script suivant: -
find . -size +20M | while read a
do
i=$(echo $a | sed 's:/: :g')
echo $a;
j=($i)
fileName=${j[${#j[@]}-1]}
userName=${j[${#j[@]}-3]}
done
mais ici variable $a
montrant le chemin à partir de ./Downloads/filename
mais je veux un chemin absolu à partir de /
.