Comment parcourir chaque ligne d'un fichier texte avec Bash ? Avec ce script: echo "Start!" for p in (peptides.txt) do echo "${p}" done J'obtiens cette sortie sur l'écran: Start! ./runPep.sh: line 3: syntax error near unexpected token `(' ./runPep.sh: line 3: `for p in (peptides.txt)' (Plus tard,...