systemd/test/units/TEST-22-TMPFILES.17.sh

16 lines
311 B
Bash
Raw Normal View History

#!/bin/bash
# SPDX-License-Identifier: LGPL-2.1-or-later
#
# Test for C-style escapes in file names and contents
set -eux
set -o pipefail
data="\x20foo\nbar"
dst="/tmp/x/\x20a\nb"
systemd-tmpfiles --create - <<EOF
f "$dst" 0644 0 0 - $data
EOF
2023-05-06 20:11:58 +00:00
diff "$(printf "/tmp/x/\x20a\nb")" <(printf "\x20foo\nbar")