Advertisement
warrior98

tema awk

Mar 25th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.15 KB | None | 0 0
  1. #!/bin/bash
  2. for fisier in $@ ; do
  3.         echo $fisier
  4.         echo
  5.  
  6.         awk '{if(length > 79) print $1 " " $NF}' $fisier
  7.         echo
  8. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement