Skip to content

Instantly share code, notes, and snippets.

@kohnakagawa
Created May 15, 2021 11:18
Show Gist options
  • Save kohnakagawa/0a93869538b8bf832dd5a21ca946767c to your computer and use it in GitHub Desktop.
Save kohnakagawa/0a93869538b8bf832dd5a21ca946767c to your computer and use it in GitHub Desktop.
M1 Mac execve.s
.global _main
.p2align 4
_main:
adr x0, shell
mov x1, 0
mov x2, 0
mov x16,#0x3b
svc #0x80
ret
shell:
.asciz "/bin/sh"
@kohnakagawa
Copy link
Author

$ clang test.s -o test.out
$ ./test.out

The default interactive shell is now zsh.
To update your account to use zsh, please run `chsh -s /bin/zsh`.
For more details, please visit https://support.apple.com/kb/HT208050.
bash-3.2$ 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment