#!/bin/bash # Array of repository URLs repos=( "https://github.com/Fannovel16/ComfyUI-Frame-Interpolation" "https://github.com/jags111/efficiency-nodes-comfyui" "https://github.com/WASasquatch/was-node-suite-comfyui" "https://github.com/pythongosssss/ComfyUI-Custom-Scripts" "https://github.com/ssitu/ComfyUI_UltimateSDUpscale" "https://github.com/melMass/comfy_mtb" "https://github.com/cubiq/ComfyUI_IPAdapter_plus" "https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved" "https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet" "https://github.com/crystian/ComfyUI-Crystools" "https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite" ) # Directory to clone into dir="../custom_nodes" # Create the directory if it doesn't exist mkdir -p $dir # Loop over the repositories for repo in "${repos[@]}"; do # Extract the repo name from the URL repo_name=$(basename $repo) # Clone the repo into the directory git clone $repo $dir/$repo_name done