index
:
github/perlweeklychallenge-club.git
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
challenge-083
/
pete-houston
/
awk
/
ch-1.awk
blob: d23b5097ed50796429c5d3d32f0fcfa64446f2bb (
plain
)
1
2
#!/bin/gawk -f
{
x
=
0
;
for
(
i
=
2
;
i
<
NF
;
i
++
)
{
x
+=
length
(
$
i
)
};
print
x
}