http://gothub.pjsfkvpxlinjamtawaksbnnaqs2fc2mtvmozrzckxh7f3kis6yea25ad.onion/coder/code-server/blob/main/install.sh
" ${ DRY_RUN - } " ] ; then 557 sh -c " $* " 558 fi 559 } 560 561 sudo_sh_c ( ) { 562 if [ " $( id -u ) " = 0 ] ; then 563 sh_c " $@ " 564 elif command_exists doas ; then 565 sh_c " doas $* " 566 elif command_exists sudo ; then 567 sh_c " sudo $* " 568 elif command_exists su ; then 569 sh_c " su root -c ' $* ' " 570 else 571 echoh 572 echoerr "This script needs to run the following command as root." 573 echoerr " $* " 574 echoerr "Please install doas, sudo, or su." 575 exit 1 576 fi 577 } 578 579...