Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at nocache-cleanup 11 lines 142 B view raw
1#!/bin/bash 2# SPDX-License-Identifier: GPL-2.0 3 4check_dependencies() 5{ 6 if [ $EUID -ne 0 ] 7 then 8 echo "Run as root" 9 exit $ksft_skip 10 fi 11}