WebCull
cli

Lectures De Favoris

Use count, tree, and get commands to inspect bookmark placement and fetch exact records.

Inspecter L Emplacement Avant De Recuperer Les Details

Bookmark read commands are designed for large accounts. Start with counts and shallow trees, collect likely IDs, then fetch only the records that matter.

Verifier La Taille D Un Dossier

webcull bookmarks count --path "/Marketing/Competitors"
{
  "success": "true",
  "count": 84,
  "parent_id": 2301
}

Use the count before tree expansion. If the count is large, lower --limit, lower --max-depth, or choose a narrower path.

Lister Une Arborescence De Dossiers Limitee

webcull bookmarks tree --path "/Marketing" --max-depth 1 --limit 25 --fields id,parent_id,type,title,url
{
  "success": "true",
  "items": [
    {
      "id": 2301,
      "parent_id": 2000,
      "type": "folder",
      "title": "Competitors",
      "url": ""
    },
    {
      "id": 2302,
      "parent_id": 2301,
      "type": "bookmark",
      "title": "Acme pricing",
      "url": "https://acme.example/pricing"
    }
  ],
  "returned": 2,
  "parent_id": 2000,
  "max_depth": 1,
  "page": 1
}
id
L'ID du favori ou dossier à transmettre aux commandes get ou graph suivantes.
parent_id
Le dossier ou élément parent qui contient ce résultat.
returned
Le nombre de lignes incluses après application de vos limites.

Recuperer Des Favoris Exacts Par ID

webcull bookmarks get --ids 2302,2303 --fields id,title,url,notes --max-metadata-chars 1200
{
  "success": "true",
  "items": [
    {
      "id": 2302,
      "title": "Acme pricing",
      "url": "https://acme.example/pricing",
      "notes": "Compare packaging changes before Q3 planning."
    }
  ],
  "returned": 1
}

Récupérez les notes et les détails de favoris plus longs seulement après avoir réduit à un petit ensemble d'ID. Cela garde la sortie du terminal lisible et plus facile à examiner.

Étape suivante cli Recherche Rechercher les détails de favoris enregistrés avec termes, filtres, groupement et limites de résultats claires.