Files
2026-03-27 19:21:16 -05:00

10 lines
372 B
Bash

#!/bin/bash
TARGET_DIR="../exiled-exchange-2/dataParser"
rsync -av --exclude-from='.gitignore' --exclude='data/json' --exclude='data/vendor' --exclude="*.ipynb" --exclude="*.json" --exclude='.git' ./ "$TARGET_DIR"
cp ./data/vendor/config.json "$TARGET_DIR/data/vendor"
echo "Files successfully copied to $TARGET_DIR, excluding git-ignored files and 'data' directory."