> ## Documentation Index
> Fetch the complete documentation index at: https://docs.base44.com/llms.txt
> Use this file to discover all available pages before exploring further.

# base44 functions delete

> מחק פונקציה אחת או יותר שנפרסו מ-Base44.

<Warning>
  דף זה הוא חלק ממיומנות של סוכן קידוד AI ונכתב לסוכנים, לא לבני אדם. לתיעוד Base44 הקריא לבני אדם, ראה את [תיעוד המפתחים](/developers).
</Warning>

# base44 functions delete

מחק פונקציה אחת או יותר שנפרסו מ-Base44.

## תחביר

```bash theme={null}
npx base44 functions delete <names...>
```

## ארגומנטים

| ארגומנט      | תיאור                                                            | נדרש |
| ------------ | ---------------------------------------------------------------- | ---- |
| `<names...>` | שם פונקציה אחד או יותר למחיקה (גם ערכים מופרדים בפסיקים מקובלים) | כן   |

## אימות

**נדרש**: כן. אם לא מאומת, תתבקש להתחבר תחילה.

## מה זה עושה

1. לוקח שם פונקציה אחד או יותר כארגומנטים
2. מוחק כל פונקציה מ-Base44 מרחוק
3. מדווח על הצלחה, לא נמצא, או שגיאה לכל פונקציה

## דוגמאות

```bash theme={null}
# Delete a single function
npx base44 functions delete process-order

# Delete multiple functions (space-separated)
npx base44 functions delete process-order send-notification

# Delete multiple functions (comma-separated)
npx base44 functions delete process-order,send-notification
```

## פלט

פונקציה יחידה:

```bash theme={null}
$ npx base44 functions delete process-order
◇ Deleting process-order...
✓ process-order deleted

└ Function "process-order" deleted
```

מספר פונקציות:

```bash theme={null}
$ npx base44 functions delete process-order send-notification
◇ Deleting process-order...
✓ process-order deleted
◇ Deleting send-notification...
✓ send-notification deleted

└ 2/2 deleted
```

## טיפול בשגיאות

אם פונקציה לא נמצאת מרחוק:

```bash theme={null}
$ npx base44 functions delete nonexistent
✓ Function "nonexistent" not found
```

אם לא מסופקים שמות:

```bash theme={null}
$ npx base44 functions delete
error: At least one function name is required
```

## הערות

* פקודה זו מוחקת פונקציות מ-Base44 (מרחוק בלבד); היא לא מסירה קבצים מקומיים
* כדי להסיר פונקציה ולנקות מצב מרוחק, מחק את הקבצים המקומיים ואז השתמש ב-`npx base44 functions deploy --force`
* פונקציות שלא נמצאו מדווחות ללא העלאת שגיאה (exit 0 במקרה של פונקציה יחידה)
* שמות מופרדים בפסיקים נתמכים: `delete func1,func2` שווה ל-`delete func1 func2`

<Note>דף זה תורגם באמצעות בינה מלאכותית. למידע המדויק והעדכני ביותר, עיין ב[גרסה האנגלית](/). </Note>
