D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
thread-self
/
root
/
lib
/
modules
/
4.4.0-1128-aws
/
build
/
scripts
/
Filename :
ld-version.sh
back
Copy
#!/usr/bin/awk -f # extract linker version number from stdin and turn into single number { gsub(".*\\)", ""); split($1,a, "."); print a[1]*10000000 + a[2]*100000 + a[3]*10000 + a[4]*100 + a[5]; exit }