在windows下使用gnu的工具

mingw Minimalist GNU for Windows

http://www.mingw.org/

想要在Windows使用wget,之前使用的是单独的安装包,现在又想使用bash的命令提示符来执行wget。因为一个导出wget下载链接的工具,用单引号包括的下载链接,在Windows下不能用,win要用双引号。懒得改,就找到了mingw这个工具。

mingw和cygwin有啥区别呢?以前装过cygwin玩耍。

官网解释:

MinGW provides a complete Open Source programming tool set which is suitable for the development of native MS-Windows applications, and which do not depend on any 3rd-party C-Runtime DLLs. (It does depend on a number of DLLs provided by Microsoft themselves, as components of the operating system; most notable among these is MSVCRT.DLL, the Microsoft C runtime library. Additionally, threaded applications must ship with a freely distributable thread support DLL, provided as part of MinGW itself).

MinGW compilers provide access to the functionality of the Microsoft C runtime and some language-specific runtimes. MinGW, being Minimalist, does not, and never will, attempt to provide a POSIX runtime environment for POSIX application deployment on MS-Windows. If you want POSIX application deployment on this platform, please consider Cygwin instead.

另外POSIX是

POSIX (Portable Operating System Interface) is a set of standard operating system interfaces based on the Unix operating system.

先安装mingw提供的安装工具,这样可以选择性安装utility。

安装器把可安装的东西分了两类:

  • Mingw提供的是开发用的编译器之类的
  • MSYS (minimal system)一个命令界面的系统,带一些unix工具,可以替代Windows下的cmd这样可以更好的使用开源的一些应用,是cygwin-1.3的一个分支。

不解的是msys-wget这个工具在all类别下才能找到,开始在msys上找了半天。勾选之后,在菜单installation-apply changes就可以安装了,很方便。

然后找到安装目录msys/bin/msys.bat,执行之,就可以得到一些命令界面了,默认是sh.exe,这个应该是bash吧。

输入wget,就能执行wget下载东西了。如果要切换目录cd /e/vedio 就能切换到e盘的vedio目录了。

时间: 2024-12-21 05:56:00

在windows下使用gnu的工具的相关文章

在windows下使用GNU工具-gcc编译器

2018-01-12  19:10:42 在windows下使用GNU编译器-gcc编译器 1.MinGW(Minimalist GNU on Windows)编译工具介绍 MinGW是指只用自由软件来生成纯粹的Win32可执行文件的编译环境,它是Minimalist(简化) GNU on Windows的略称. unix-like系统上的gcc的windows移植版本:MinGW编译系统/工具 实际上 MinGW 并不是一个 单纯的C/C++ 编译器,而是一套 GNU 工具集合.除开 GCC

Windows下RSA密钥生成工具openssl

点击下载 1. 生成原始 RSA私钥文件 private_key.pem openssl genrsa -out private_key.pem 1024 2. 将原始 RSA私钥转换为 pkcs8格式 openssl pkcs8 -topk8 -inform PEM -in private_key.pem -outform PEM -nocrypt -out rsa_private_key.pem 3. 生成 RSA公钥 rsa_public_key.pem openssl rsa -in p

windows下使用GNU make命令报错的解决方法

windows下使用GNU make命令报错的解决方法=> 错误信息:make: Interrupt/Exception caught (code = 0xc00000fd, addr = 0x4227d3) ## 1.原因环境变量中配置了`D:\Program Files (x86)\Git\bin`,该目录下存在一个`sh.exe` 在执行make命令时,如果在`MakeFile`文件中没有指定shell的路径,`make`就会到环境变量中,去找一个`X:\\XXX\XXX\sh.exe`作

windows下命令行cmder工具

windows下系统自带的命令行工具,实在是太丑了,输入命令后,有时排版乱七八糟,而且使用惯liunx系统的命令后,实在是不能够接受,这么蹩脚的工具:为此我给大家推荐一款实用的开源工具cmder 下载cmder(有两个版本min和full,full包含了git,建议安装full版本的):http://download.csdn.net/detail/u013948858/9761145 解压安装cmder之后,在环境变量中进行配置 将cmder添加到右键菜单(在管理员权限的终端输入以下语句):

windows下的命令行工具babun

什么是babun babun是windows上的一个第三方shell,在这个shell上面你可以使用几乎所有linux,unix上面的命令,他几乎可以取代windows的shell.用官方的题目说就是A Windows shell you will love! babun的几个特点 使用babun无需管理员权限先进的安装包管理器(类似于linux上面的apt-get或yum)预先配置了Cygwin和很多插件拥有256色的兼容控制台HTTP(S)的代理支持面向插件的体系结构可以使用它来配置你的gi

windows下端口占用处理工具

一.通用方法 经常,我们在启动应用的时候发现系统需要的端口被别的程序占用,笔者在最近使用tomcat时,老是会遇到这种端口占用的问题,如何知道谁占有了我们需要的端口,很多人都比较头疼,以下是通用方法: 在windows命令行窗口下执行:  1.查看所有的端口占用情况 C:\>netstat -ano  协议    本地地址                     外部地址               状态                   PID  TCP    127.0.0.1:1434

Windows 下的 MarkdownPad 2 工具使用

MarkdownPad 2 工具(windows) 一. 软件下载和安装 下载登陆官网: http://markdownpad.com/ 点击Download,会自动下载.或者直接点击http://markdownpad.com/download.html 安装傻瓜式安装,一直点下一步.安装成功后,如图(盗的图^_^). 二. 语法规则 标题(Ctrl+1/2/3/4)标题是每篇文章都需要也是最常用的格式,如果一段文字被定义为标题,只要在这段文字前加 # 号即可. #一级标题###二级标题###

windows下代码规范检测工具sonarqube安装与使用,含与maven的结合

一.首先下载sonarqube   地址 : https://www.sonarqube.org/downloads/   (最新版本支持java11+,博主下载支持java8的版本7.7), 下载SonarScanner   地址:https://docs.sonarqube.org/latest/analysis/scan/sonarscanner/ 需要注意的是该版本对应的是mysql5.7,不能是mysql8 二.windows 安装 mysql5.7安装好创建sonar数据库 解压下载

windows下安装php单元测试工具

安装环境 window10 64位 php5.6 安装phpunit前需要安装pear 在网址 http://pear.php.net/go-pear.phar 将文件保存为go-pear.phar文件 复制到php的安装目录下 执行命令php go-pear.phar 当出现下面这句话时,你可直接按回车,如果最后出错了,重新安装时,这里你可以输入local,不知道为什么,因为遇到过直接回车,到最后却安装不成功. Are you installing a system-wide PEAR or