Ben Grande 9954972df3
fix: POSIX does not support head byte count
Test done on OpenBSD for compatibility with the POSIX specification,
also becoming a new supported system.
2024-04-23 18:34:10 +02:00

15 lines
408 B
Bash

#!/usr/bin/env zsh
## SPDX-FileCopyrightText: 2023 Benjamin Grande M. S. <ben.grande.b@gmail.com>
##
## SPDX-License-Identifier: AGPL-3.0-or-later
## Zsh does not source /etc/profile as it is not a Bourne based Shell, but
## some distributions such as Qubes, Whonix, Debian, Gentoo ship files to
## /etc/profile.d.
if test -r /etc/profile; then
emulate sh -c "source /etc/profile"
fi
. "$HOME/.profile"