7 lines
157 B
Bash
Executable file
7 lines
157 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# USAGE: lsyscalls | sort [-nk2]
|
|
|
|
echo -e '#include <sys/syscall.h>'\
|
|
| cpp -dM \
|
|
| grep "#define __NR_.*[0-9]$" \
|
|
| cut -d_ -f 4-
|