Sat. Jan 3rd, 2026
#!/bin/bash
filename='requirements.txt'
echo Start
while read p; do
    echo "$p"
    poetry add "$p"
done < "$filename"