In a bash script, I have to include the same file several times in a row as an argument. Like this:
convert image.png image.png image.png [...] many_images.png
where image.png should be repeated a few times.
Is there a bash shorthand for repeating a pattern?
This works with a given integer (10 in the example below).
It can also be used with
xargs: