Files
catalyst/ordered_pip.sh
T
Jenkins T. Quantopian, III 86df0245b7 fixed shell declarations
2012-02-03 05:18:56 +00:00

12 lines
176 B
Bash
Executable File

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