| 12345678910111213141516171819 | # check if ubuntu/debainif [ -f /etc/debian_version ]; then    sudo apt-get install pkg-config gcc libseccomp-dev# check if fedoraelif [ -f /etc/fedora-release ]; then    sudo dnf install pkgconfig gcc libseccomp-devel# check if archelif [ -f /etc/arch-release ]; then    sudo pacman -S pkg-config gcc libseccomp# check if alpineelif [ -f /etc/alpine-release ]; then    sudo apk add pkgconfig gcc libseccomp-dev# check if centoselif [ -f /etc/centos-release ]; then    sudo yum install pkgconfig gcc libseccomp-develelse    echo "Unsupported distribution"    exit 1fi
 |