16 lines
610 B
Bash
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
|