This can be done using the printenv command if it is available: sh -c 'printenv TZ'. or the printf command if not: sh -c 'printf "%s\n" "$TZ"' ...
確定! 回上一頁