un script que hace word count.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
- #
- # wordcounter
- # este script cuenta palabras
- #
- # v0.0.1 Gabriel Orozco, 7 de Noviembre del 2020
-
- wc -w $*
|