This repository has been archived on 2026-08-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2026-08-20 00:45:43 +02:00

16 lines
610 B
Bash

#!/bin/bash
echo "=== workflow/default files ==="
find /home/fabian/ComfyUI -maxdepth 3 \( -name "*workflow*" -o -name "*default*" \) 2>/dev/null | grep -v __pycache__ | grep -v node_modules | grep -v ".pyc" | head -30
echo "=== user dir ==="
ls -la /home/fabian/ComfyUI/user/ 2>/dev/null
echo "=== user files ==="
find /home/fabian/ComfyUI/user -type f 2>/dev/null | head -30
echo "=== web json files ==="
find /home/fabian/ComfyUI/web -maxdepth 3 -type f -name "*.json" 2>/dev/null | head -10
echo "=== comfy settings ==="
cat /home/fabian/ComfyUI/user/default/comfy.settings.json 2>/dev/null | head -30