blob: d78af76564e6374a5760fe322ecdc09e9a65772e (
plain)
1
2
3
4
5
6
7
8
9
10
|
- name: create local file with unicode filename and content
lineinfile:
dest: "{{ output_dir }}/语/汉语.txt"
create: true
line: 汉语
- name: remove local file with unicode filename and content
file:
path: "{{ output_dir }}/语/汉语.txt"
state: absent
|