Horje
linux remove lines from one file in another Code Example
linux remove lines from one file in another
If the files are sorted:

comm -23 file1 file2

-23 suppresses the lines that are in both files, or only in file 2. 
If the files are not sorted, pipe them through sort first...

linux remove lines from file
grep -v "pattern" file > temp && mv temp file




Shell

Related
gitignore dotnet mvc Code Example gitignore dotnet mvc Code Example
install git on linux Code Example install git on linux Code Example
apollo client install in gatsby Code Example apollo client install in gatsby Code Example
linux all processes on port 8000 Code Example linux all processes on port 8000 Code Example
macos read ext4 Code Example macos read ext4 Code Example

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