I'm using curl to post issues to Jira from the Linux command line. I'd like to format the description as a table but can't seem to get it to work.
This is my curl command:
curl -s -D- -u ${CURLUSER}:${CURLPASS} -X POST --data @"$TMP" -H "Content-Type: application/json" https://jira.my.org/jira/rest/api/2/issue/
This is my post data ($TMP):
{ "fields": { "project": { "key": "ST" }, "summary": "updates for host", "description": "||current||patch|| |libruby1.9.1|1.9.3.484-2ubuntu1.10| |ruby1.9.1|1.9.3.484-2ubuntu1.10| ", "issuetype": { "name": "OS Updates" }, "labels":["system-change", "desktop"]} }
What I am getting in the Description field is this:
What I want is this:
What am I missing in $TMP to get a proper table?
Thanks
Hi Dee
I think you just need a line feed / carriage return (in C# it's \r\n) after the || at the end of the header section, which will force the details onto the next line
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thnka you this was very useful for me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.