susepaste - multiple images

Is it possible to put multiple images in a single susepaste?
That one at a time for a long set of images is a royal pain.

Imagine what would happen if that was possible on this totally open paste service … FWIW I can’t even manage to paste one jpeg from a terminal window… Paste failed. It’s simply not designed to do this kind of thing. But there are numerous free image storage sites, where you simply create an album with all the images in it, then pick the link to the album and share that.

Thanks, I didn’t think it was possible, but it was worth the asking

Hi
Use susepaste-screenshot (it has a man page… :wink: )

https://susepaste.org/48570826

Or just use the image upload feature on the forum?

The command I ran is in the window capture…

If you get an error dialog, check the 'Recent" susepaste page;

https://susepaste.org/lists

From a terminal window I don’t get any dialog, just “Paste failed :-(” But from the link you provided I see that the paste doesn’t fail, returning the URL does… Mmmm

Hi
Yes, it’s a bug for some reason the URL variable is not returned… I’m still investigating a fix and can push it to the Github repo…

Christian Boltz posted the fix on the ML today. I copied /usr/bin/susepaste to ~/bin/kpaste, then editted kpaste.


knurpht@Knurpht-HP:~> diff bin/kpaste /usr/bin/susepaste
124c124
<         ${SCHEMA}://susepaste.org 2>&1 | sed -n 's|<\ [lL]ocation:\ ||p' `"
---
&gt;         ${SCHEMA}://susepaste.org 2&gt;&1 | sed -n 's|&lt;\ Location:\ ||p' `"
knurpht@Knurpht-HP:~> 



so, changed “Location” to “[lL]ocation” ( both lower and uppercase L between the brackets ). I confirm it works like it should.