srodowisko_programisty/lab1/6.bash
2024-10-11 11:37:25 +02:00

7 lines
143 B
Bash
Executable file

#!/usr/bin/env bash
for word in $(grep -Roh '\w*' "$1" | sort | uniq)
do
echo "current word: $word"
grep -RE "($word.*){2}" "$1"
done