14 lines
199 B
Plaintext
14 lines
199 B
Plaintext
#!/bin/env nu
|
|
|
|
# Inpect ELF-files
|
|
def elf [
|
|
elf: string # ELF-file to inspect
|
|
get?: cell-path
|
|
] {
|
|
if $get == null {
|
|
^elf $elf | from json
|
|
} else {
|
|
^elf $elf | from json | get $get
|
|
}
|
|
}
|