⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 extract.awk

📁 This package consists of the executable (UCW), a default script file, this file, and the library fi
💻 AWK
字号:
# An AWK script to generate an .IMP file from
# the output of dumpbin -EXPORTS
BEGIN { # first find the list of exports
  do { getline } while ($1 != "ordinal");
  getline;
  print "UC1 MS"
}

$1 == "Summary" { exit }

{ print $1,$4  }
  

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -