- or download this
perl -MO=Deparse wc.c > deparse.pl
- or download this
gcc wc.c -E > wc.txt
- or download this
# note the comma. This will unshift the first command line
# argument onto @ARGV and set $_
...
{
printf "%7d %7d %7d total\n", $i[7], $i[6], $i[8];
}
- or download this
#include <sys/types.h>
#include <sys/stat.h>
...
printf("%7d %7d %7d total\n",i [7],i [6],i [8]);
}
}