Retourner au contenu associé (entrée de forum : cherche petit script car j'ai la flemme)
Posté par Flyounet (site web personnel) le 03 avril 2014 à 14:25. En réponse au message cherche petit script car j'ai la flemme. Évalué à 1.
Disons : find path -type l -print -exec readlink {} \;
find path -type l -print -exec readlink {} \;
Ou moins flemme : find path -type l | while read a ; do echo "$a ---> $(readlink $a)";done
find path -type l | while read a ; do echo "$a ---> $(readlink $a)";done
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
# Pareil j'ai la flemme
Posté par Flyounet (site web personnel) . En réponse au message cherche petit script car j'ai la flemme. Évalué à 1.
Disons :
find path -type l -print -exec readlink {} \;Ou moins flemme :
find path -type l | while read a ; do echo "$a ---> $(readlink $a)";done