3412dd8054
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/gawk#bff1660de19e4198458d9c101564ba7f54091547
9 lines
139 B
Bash
Executable File
9 lines
139 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "
|
|
|
|
jpg: 364592 x
|
|
gif: 97148 x" | awk '{ if ('\!'length($3)) $3="-"; print
|
|
sprintf("%-10s%8s%10s%s", $1, $2, "", $3); }'
|
|
|