123456789101112131415161718192021 |
- # vim: ft=sh:
- # shellcheck shell=sh
- # ; nasm -felf64 pause.nasm -o pause.o && ld pause.o -o pause
- #
- #
- # SECTION .text
- # GLOBAL _start
- #
- # _start:
- # mov eax, 0x22
- # syscall
- #
- runit_once() {
- : "${PWD:=$(pwd)}"
- [ "${1:-}" ] && "${@}"
- exec chpst -b "${PWD##*/}" pause
- }
|