URL: https://linuxfr.org/forums/programmation-shell/posts/awk-besoin-d-explications Title: Awk : Besoin d'explications Authors: HuriSaki Date: 2017年08月30日T14:46:58+02:00 License: CC By-SA Tags: Score: 0 Salut à tous, J'aurais besoin d'explications pour comprendre une commande que j'ai trouvée [ici](https://stackoverflow.com/questions/1761341/awk-print-next-record-following-matched-record/45960190#45960190). Je ne comprends pas la partie ``` {f=NR} f&&NR-1==f RS="1" ``` Comment ``` && ``` puis ``` == ``` fonctionnent ensemble dans cette commande ? etc... J'ai bien saisi le but (RS utilise le caractère "1" comme séparateur et on affiche l'item après notre pattern en incrémentant NR) mais pas le fonctionnement. Merci pour votre aide.