notes/BASH combine each item with another from file-xmcXhZu8.sh
#!/bin/bash


while read item1
do
  while read item2
  do
    echo "$item1-$item2"
  done < list.txt
done < list.txt

syntax highlighted by Code2HTML, v. 0.9.1