Search
Project
General
Profile
Home
Projects
Help
Sign in
Register
Search
:
Main
All Projects
Main
Overview
Activity
Issues
Wiki
Files
Repository
Download (342 Bytes)
Statistics
| Branch:
master
| Tag:
RevA
RevB
| Revision:
root
/
software
/
hbkcd
/
scripts
/
hbkcd_queue.sh
@ 8f7c4daf
View
History
Annotate
#!/bin/bash
ADDRESS
=
"brutus"
PORT
=
"8081"
# Make sure curl ad jq are installed
command
-v
curl
>
/dev/null 2>&1
||
{
echo
>
&2
"Please install curl to use this script. Aborting."
;
exit
1
;
}
command
-v
jq
>
/dev/null 2>&1
||
{
echo
>
&2
"Please install jq to use this script. Aborting."
;
exit
1
;
}
curl
-s
-X
GET http://
$ADDRESS
:
$PORT
/queue | jq
« Previous
1
2
3
Next »
(2-2/3)
Loading...