mirror of
https://github.com/wassname/catalyst.git
synced 2026-06-28 00:58:26 +08:00
12 lines
176 B
Bash
Executable File
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";
|