for each line in file bash
while read p; do
echo "$p"
done <peptides.txt
for each line in file bash
while read p; do
echo "$p"
done <peptides.txt
bash return lines from one file that arent in another
# Example usage:
awk 'NR==FNR { b[$0] = 1; next } !b[$0]' input_file_1 input_file_2
# This returns all lines of input_file_2 that aren't found in
# input_file_1
# Note, remove the ! to return all lines in common between the files
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us