Horje
loop file bash Code Example
loop file bash
while read p; do
  echo "$p"
done <peptides.txt
for loop in bash for files
#!/bin/bash
FILES=/path/to/*
for f in $FILES
do
  echo "Processing $f file..."
  # take action on each file. $f store current file name
  cat $f
done




Shell

Related
remove openshot ubuntu Code Example remove openshot ubuntu Code Example
how to revert back to previous commit in git permanently Code Example how to revert back to previous commit in git permanently Code Example
install shutter ubuntu Code Example install shutter ubuntu Code Example
nmap udp scan Code Example nmap udp scan Code Example
how to revert back to previous commit in git Code Example how to revert back to previous commit in git Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10