~vcs-imports/busybox/trunk

« back to all changes in this revision

Viewing changes to shell/ash_test/ash-quoting/negative_arith.tests

  • Committer: Denys Vlasenko
  • Author(s): Christian Franke
  • Date: 2023-11-13 10:32:35 UTC
  • Revision ID: git-v1:a63b60bdd6fa26b867c80d44074118babbae7ffd
Cygwin: regenerate defconfig

Signed-off-by: Christian Franke <christian.franke@t-online.de>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
>tempfile0.tmp
 
2
>tempfile1.tmp
 
3
>tempfile9.tmp
 
4
# The [...] is interpreted as: "any of the chars 0, -, and 9"
 
5
echo tempfile[0"$((-9))"].tmp
 
6
# The [...] is [0-9], interpreted as: "any digit"
 
7
echo tempfile[0$((-9))].tmp
 
8
rm tempfile?.tmp