blob: 8e47ca111f082dde722b121268ea511643f80eef [file] [log] [blame]
Denys Vlasenko45dd87a2020-02-21 16:30:44 +01001>tempfile0.tmp
2>tempfile1.tmp
3>tempfile9.tmp
4# The [...] is interpreted as: "any of the chars 0, -, and 9"
5echo tempfile[0"$((-9))"].tmp
6# The [...] is [0-9], interpreted as: "any digit"
7echo tempfile[0$((-9))].tmp
8rm tempfile?.tmp