在Windows命令提示符下运行Linux命令
问题描述:
我如何知道在运行Linux命令的本地windows cmd中安装了哪个软件包?这是因为我想在我的另一台机器上安装相同的工具,我不记得是否安装了某些东西。在下面的链接 在Windows使用的Unix/Linux命令给出在Windows命令提示符下运行Linux命令
C:\>awk
Usage: awk [POSIX or GNU style options] -f progfile [--] file ...
Usage: awk [POSIX or GNU style options] [--] 'program' file ...
POSIX options: GNU long options:
-f progfile --file=progfile
-F fs --field-separator=fs
-v var=val --assign=var=val
-m[fr] val
-W compat --compat
-W copyleft --copyleft
-W copyright --copyright
-W dump-variables[=file] --dump-variables[=file]
-W exec=file --exec=file
-W gen-po --gen-po
-W help --help
-W lint[=fatal] --lint[=fatal]
-W lint-old --lint-old
-W non-decimal-data --non-decimal-data
-W profile[=file] --profile[=file]
-W posix --posix
-W re-interval --re-interval
-W source=program-text --source=program-text
-W traditional --traditional
-W usage --usage
-W use-lc-numeric --use-lc-numeric
-W version --version
To report bugs, see node `Bugs' in `gawk.info', which is
section `Reporting Problems and Bugs' in the printed version.
gawk is a pattern scanning and processing language.
By default it reads standard input and writes standard output.
Examples:
gawk '{ sum += $1 }; END { print sum }' file
gawk -F: '{ print $1 }' /etc/passwd
答
既然你可以在命令提示符下执行awk
,请检查您的Windows PATH变量。
echo %PATH%
+0
找到它 - GOW(Windows上的GNU) – Lordy 2014-10-30 08:05:36
您是否安装了MinGW? – 2014-10-30 06:43:38
@Lord_Gestalter nope,刚发现它是GOW(GNU在Windows上)使用ghostdog74的答案。 – Lordy 2014-10-30 08:07:46