hwdb: fix screen rotation for EXO Wings 2in1 w1125 (#36283)
[systemd.io.git] / test / units / TEST-22-TMPFILES.17.sh
blobf43aba5ad9ecc178fa9d157b91470c50c6b807bd
1 #!/bin/bash
2 # SPDX-License-Identifier: LGPL-2.1-or-later
4 # Test for C-style escapes in file names and contents
5 set -eux
6 set -o pipefail
8 data="\x20foo\nbar"
9 dst="/tmp/x/\x20a\nb"
11 systemd-tmpfiles --create - <<EOF
12 f "$dst" 0644 0 0 - $data
13 EOF
15 diff "$(printf "/tmp/x/\x20a\nb")" <(printf "\x20foo\nbar")