WebCull
cli

Escrituras

Create or update one bookmark or folder with narrow, explicit write commands.

Crear O Actualizar Un Marcador A La Vez

Las escrituras de CLI son intencionalmente limitadas. Úselas cuando quiera crear o actualizar un marcador o carpeta específico. Los cambios masivos, cambios recursivos y organización automática no forman parte de estos comandos.

Crear Un Marcador O Carpeta

webcull bookmarks create --url https://acme.example/pricing --title "Acme pricing" --parent-id 2301 --dry-run
{
  "success": "true",
  "dry_run": "true",
  "action": "create",
  "id": 2302,
  "type": "bookmark",
  "parent_id": 2301,
  "would_update": ["url", "title", "parent_id"]
}

Use --dry-run antes de guardar cuando quiera confirmar primero el destino, el acceso de cuenta o el comportamiento de cuenta cifrada.

Aplicar Parches Solo A Los Campos Que Deben Cambiar

webcull bookmarks update 2302 --notes "Review before Q3 campaign planning."
{
  "success": "true",
  "action": "update",
  "id": 2302,
  "type": "bookmark",
  "parent_id": 2301
}

Update commands preserve fields not included in the command. Send the narrowest patch that completes the requested change.

Siguiente paso cli Recordatorios Create, list, and cancel bookmark reminders from the CLI.