Answers for "bash script take string from specific line in another file"

1

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
Posted by: Guest on October-01-2020
0

bash get line from file

sed 'NUMq;d' file
Posted by: Guest on October-18-2021

Code answers related to "bash script take string from specific line in another file"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language