Horje
bash return lines from one file that arent in another Code Example
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




Shell

Related
untar tar.gz Code Example untar tar.gz Code Example
brew services start mongodb Code Example brew services start mongodb Code Example
ubuntu apt uninstall Code Example ubuntu apt uninstall Code Example
install python3 raspberry pi Code Example install python3 raspberry pi Code Example
php enable module Code Example php enable module Code Example

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