mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-22 13:25:00 +00:00
20 lines
491 B
Bash
Executable file
20 lines
491 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Create directories if they don't exist
|
|
mkdir -p tmp.benchmark/exercism
|
|
|
|
# Change to the exercism directory
|
|
cd tmp.benchmark/exercism
|
|
|
|
# List of languages to clone
|
|
languages=("cpp" "go" "java" "javascript" "python" "rust")
|
|
|
|
# Clone each repository
|
|
for lang in "${languages[@]}"; do
|
|
if [ ! -d "$lang" ]; then
|
|
echo "Cloning $lang repository..."
|
|
git clone "https://github.com/exercism/$lang"
|
|
else
|
|
echo "$lang repository already exists"
|
|
fi
|
|
done
|