Thus said Sergey Bronnikov on Mon, 01 Jan 2018 12:44:42 +0000: > $ echo "fossil ticket add title "title" comment \"$(cat content)\"" | wc -c > 469207 > > Is there any workaround?
There is one workaround that I'm aware of. If you chop your comment up into chunks you could do something like: fossil ticket add title "title" comment "$firstchunk" fossil ticket change <HASH> +comment "$secondchunk" fossil ticket change <HASH> +comment "$thirdchunk" However, if you want an actual paragraph break between the first and second chunks (and not just concatenation) then you would have to embed a newline in there like: fossil ticket change <HASH> +comment " $fourthchunk" Andy -- TAI64 timestamp: 400000005a4aee1b _______________________________________________ fossil-users mailing list [email protected] http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

