Ticket #4501: test.sh

File test.sh, 228 bytes (added by imre84, 9 months ago)
Line 
1#!/bin/bash -eux
2
3function testfn()
4{
5  local fn="${1}.txt"
6  echo abc >"$fn"
7}
8
9cd /tmp
10x=$'\xf0\x9f\xa5\xb4'
11testfn "$x"
12x="$x$x"
13testfn "$x"
14x="$x$x"
15testfn "$x"
16x="$x$x"
17testfn "$x"
18x="$x$x"
19testfn "$x"
20x="$x$x"
21testfn "$x"