You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
196 B
Bash

#!/bin/bash
# grep -iEw "n..io" palabras.txt
if [ -z "$1" ]; then
echo "Mete el parametro. Ejemplo: wordle.sh n..io . Siendo los puntos lo que desconoces."
else
grep -iEw "$1" palabras.txt
fi