ay url
Druckt die Admin-UI-Edit-URL eines Eintrags nach stdout — ohne Browser-Launch und ohne Zusatz-Output. Gebaut für Pipes, xargs, AI-Agenten und $()-Substitution in Shell-Scripts.
Syntax
ay url <collection> <id>
Beispiele
# URL ausgeben
ay url tasks 68ab123def456
# → https://admin.ayoune.app/...../tasks/68ab123def456
# In Pipe
ay url tasks 68ab | xargs open
ay url tasks 68ab | wl-copy
# In Shell-Substitution
URL=$(ay url tasks 68ab)
echo "Edit: $URL"
# Bulk
ay search tasks "blocker" -i _id -m \
| xargs -I{} ay url tasks {}
Environment
| Variable | Default | Zweck |
|---|---|---|
ADMIN_URL |
https://admin.ayoune.app |
Admin-UI-Base |
Hinweis
Im Gegensatz zu open ist url strikt minimal: kein Spinner, kein Banner, kein farbiger Output — nur die URL plus \n.
Siehe auch
- open — Mit Browser-Launch oder
--copy