12 lines
183 B
Bash
Executable File
12 lines
183 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -d lists ]; then
|
|
mkdir lists
|
|
cd lists
|
|
parallel -a ../awesome-awesomeness/latest -j1 git submodule add --force {}
|
|
fi
|
|
|
|
#ls lists | parallel git -C lists/{} pull
|
|
|
|
|