mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-02-23 17:29:23 +08:00
6 lines
126 B
Bash
Executable File
6 lines
126 B
Bash
Executable File
#!/bin/sh
|
|
# returns nasm version from nasm.h
|
|
# used for dist building
|
|
|
|
grep NASM_VER nasm.h | awk -F " " -F "\"" '{print $2}'
|