christian-blades-cb / iscoredump

is this file a core dump? find out now!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

iscoredump Average time to resolve an issue Percentage of issues still open

iscoredump answers a simple question: "is this file a core dump"?

Usage

Iscoredump returns a non-zero exit code if the provided file is not a core dump, allowing you to integrate it into your scripts.

➜  iscoredump ./core
ELF type: Core
➜  echo $?
0
➜  iscoredump /bin/true
ELF type: Executable
➜  echo $?
1
➜  mv core icouldbeanexecutable_youdontknowme
➜  iscoredump icouldbeanexecutable_youdontknowme
ELF type: Core
➜  echo $?
0

About

is this file a core dump? find out now!

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Rust 90.5%Language:C 9.5%