mirror of
https://github.com/fleetdm/fleet
synced 2026-05-17 05:58:40 +00:00
10 lines
247 B
Bash
Executable file
10 lines
247 B
Bash
Executable file
#!/bin/bash
|
|
source $FLEET_ENV_PATH
|
|
endpoint="api/latest/fleet/queries"
|
|
jq -n \
|
|
--arg name "$1" \
|
|
--arg query "$2" \
|
|
'.name = $name
|
|
|.query = $query
|
|
'|\
|
|
curl $CURL_FLAGS -H "Authorization: Bearer $TOKEN" "$SERVER_URL/$endpoint" -d@-
|