Files
catalyst/ordered_pip.sh
T

12 lines
174 B
Bash
Executable File

#!/bin/sh
echo $hash
while read line
do
if [[ $line != \#* ]] ; then
#echo $line
pip install $line
fi
done < $1
echo "Final line count is: $a";