mirror of
https://github.com/urbit/shrub.git
synced 2024-12-02 21:34:04 +03:00
9 lines
136 B
Bash
9 lines
136 B
Bash
|
source $setup
|
||
|
names=($names)
|
||
|
dirs=($dirs)
|
||
|
mkdir $out
|
||
|
cd $out
|
||
|
for ((i=0;i<${#names[@]};i++)); do
|
||
|
ln -s "${dirs[i]}" "${names[i]}"
|
||
|
done
|