Answers for "linux bash loop over files"

14

bash loop over files in directory

#!/bin/bash
for filename in /Data/*.txt; do
    ...
done
Posted by: Guest on May-25-2020
8

loop file bash

while read p; do
  echo "$p"
done <peptides.txt
Posted by: Guest on April-06-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language