~ubuntu-branches/ubuntu/utopic/devscripts/utopic-security

« back to all changes in this revision

Viewing changes to test/bashisms/brace-expansion.sh.out

  • Committer: Package Import Robot
  • Author(s): Benjamin Drung
  • Date: 2013-02-18 22:27:33 UTC
  • mfrom: (10.9.22 experimental)
  • Revision ID: package-import@ubuntu.com-20130218222733-7krtkqzko32xte0z
Tags: 2.13.0ubuntu1
* Merge from Debian experimental. Remaining changes:
  - Convert python scripts to python3. (Closes: #680313)
    Debian bug #695259 needs to be fixed to get the change into Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
possible bashism in bashisms/brace-expansion.sh line 3 (brace expansion, {a..b[..c]}should be $(seq a [c] b)):
 
2
echo BASHISM{1..10}
 
3
possible bashism in bashisms/brace-expansion.sh line 4 (brace expansion, {a..b[..c]}should be $(seq a [c] b)):
 
4
echo BASHISM{1..10..2}
 
5
possible bashism in bashisms/brace-expansion.sh line 5 (brace expansion):
 
6
echo BASHISM{a..z}
 
7
possible bashism in bashisms/brace-expansion.sh line 6 (brace expansion):
 
8
echo BASHISM{Z..a}
 
9
possible bashism in bashisms/brace-expansion.sh line 7 (brace expansion):
 
10
echo BASHISM{a..z..2}