Advertisement
niccarp

Untitled

Sep 9th, 2013
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.26 KB | None | 0 0
  1.  #/bin/bash
  2.  
  3.  filedata="data"
  4.  fileblack="black"
  5.  
  6.  dos2unix $filedata $fileblack
  7.  
  8.  cat $filedata | sort > $filedata.sort
  9.  cat $fileblack | sort > $fileblack.sort
  10.  
  11.  comm -23 $filedata.sort $fileblack.sort > nombreslimpios
  12.  
  13.  unix2dos nombreslimpios
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement