An open API service indexing awesome lists of open source software.

https://github.com/felipensp/call

Command-line utility to execute function from specified object file
https://github.com/felipensp/call

c call dynamic lib linker object runtime

Last synced: 10 months ago
JSON representation

Command-line utility to execute function from specified object file

Awesome Lists containing this project

README

          

# call
Command-line utility to execute function from specified object file

#### Usage ####

```
$ ./call /lib/x86_64-linux-gnu/libc.so.6 puts "it works"
it works
call returned 0
```

```
$ ./call /lib/x86_64-linux-gnu/libc.so.6 printf $'[%s] %s\n' "`date`" `whoami`
[Sun Dec 6 10:46:34 BRST 2015] felipe
call returned 0
```

```
$ ./call /lib/x86_64-linux-gnu/libc.so.6 getcwd 0
call returned '/home/felipe/dev/call'
```