Sat. Nov 22nd, 2025
#!/bin/bash
filename='requirements.txt'
echo Start
while read p; do
    echo "$p"
    poetry add "$p"
done < "$filename"