Advertisement
AdrianAdy

Untitled

Apr 24th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.20 KB | None | 0 0
  1. #!/bin/bash
  2. aux="aux"
  3. echo "cuv: "
  4. while read cuv;do
  5.  
  6.     for fis in $*;do
  7.         sed "s/\<$cuv\>//g" $fis >$aux; cat $aux  >$fis
  8.     done
  9.  
  10.     echo ""
  11.     echo "cuv:"
  12. done
  13. ~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement