Advertisement
rabbitekk312

Untitled

Feb 2nd, 2021
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. while read line; do
  2. size=${#line}
  3. if [ $size -e 2 ]
  4. then
  5. echo "$line" > "Out2"
  6. fi
  7. if [ $size -e 4 ]
  8. then
  9. echo "$line" > "Out4"
  10. fi
  11. done < "FileInput"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement