美文网首页
常用 Linux 和 WIndows 命令对比

常用 Linux 和 WIndows 命令对比

作者: 指鹿为码 | 来源:发表于2019-01-16 23:08 被阅读0次
    sh shell 批处理 bat batch 命令行 cmd command 备注
    start chrome.exe start <url>
    call 调用批处理
    grep findstr find 搜索文本
    ps aux ps -ef tasklist 进程列表
    kill <pid> taskkill /pid <pid> taskkill /f /im cmd.exe /t 终止进程
    cat type 显示文本内容
    cd cd = chdir 切换
    pwd cd = chdir 显示当前路径
    rm -f /path/* del = erase del /s/q/ /path 删除文件
    rm -rf rd = rmdir rd /s/q 删除目录
    cp cp -r copy xcopy 复制
    mv move 移动
    mv ren rename 重命名
    service systemctl net sc 管理服务
    clear cls 清空屏幕
    diff comp fc 比较
    ifconfig ip ipconfig 查看IP地址
    echo $VARIABLE env set variable set 查看环境变量
    chmod attrib 文件属性

    相关文章

      网友评论

          本文标题:常用 Linux 和 WIndows 命令对比

          本文链接:https://www.haomeiwen.com/subject/mbdyqqtx.html