Guest User

Untitled

a guest
Jun 26th, 2018
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Awk 0.22 KB | None | 0 0
  1. #!/usr/bin/awk -f
  2.  
  3. {
  4.     for (i=1; i<=NF; i++)
  5.     {
  6.         if (match($i, "-") != 0)
  7.         {
  8.             split($i, estremi, "-");
  9.             for (j=estremi[1]; j<=estremi[2]; j++)
  10.                 printf("%d ", j);
  11.         }
  12.         else
  13.         {
  14.             printf("%d", $i);
  15.         }
  16.     }
  17. }
Add Comment
Please, Sign In to add comment