diff options
Diffstat (limited to 'test cases/common/179 escape and unicode/find.py')
-rw-r--r-- | test cases/common/179 escape and unicode/find.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test cases/common/179 escape and unicode/find.py b/test cases/common/179 escape and unicode/find.py new file mode 100644 index 0000000..34a3eb8 --- /dev/null +++ b/test cases/common/179 escape and unicode/find.py @@ -0,0 +1,9 @@ +#!/usr/bin/env python3 + +import os +import sys + +for fh in os.listdir('.'): + if os.path.isfile(fh): + if fh.endswith('.c'): + sys.stdout.write(fh + '\0') |