Found the issue, docker ran with POSIX had to add
ENV LANG=C.UTF-8
ENV LC_ALL=C.UTF-8
Now it works with åäö
ENV LANG=C.UTF-8
ENV LC_ALL=C.UTF-8
Now it works with åäö
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu#!/bin/sh
# /agent/script/ping.sh
LOG=/agent/script/logs
mkdir -p "$LOG"
TS="$(date -u +%Y%m%dT%H%M%SZ)"
{
echo "----- $TS -----"
echo "PWD: $(pwd)"
echo "USER: $(id)"
echo "ARGV_STR: $*"
} >> "$LOG/ping.txt"
printf '%s\n' "$@" | od -An -t x1 >> "$LOG/ping-bytes.hex" 2>/dev/null || true