zoukankan      html  css  js  c++  java
  • Linux 基础知识

    1.man

    search some linux cmd, using man "command" or command --help.

    2.find

    find path -name "*.txt"  // 在path下面查找 *.txt文件.

    嵌套查找:find `find . -name res` -name "*.xml" 在res目录下查找所有 xml文件.

    3.grep

    gerp 'string' filename

    gerp 'activtiy' hello.java

    4.ls |grep 'team'

    显示当前目录下文件名包含'team' 的文件

    ls | xargs gerp 'team'

    显示当前目录下每个文件内容含有'team'的文件.

    5.cat

    打印文件内容

    6.chmod

    linux 权限管理分为3组,user,group,others

    drwxrwxr-x:

    bit0: d or -  表示文件夹 或者文件.

    bit1--bit3:user

    bit4--bit6:group

    bit7--bit9:others

    r:read

    w:write

    x:excute

    7.ps & kill

    ps -A showing all process in linux

  • 相关阅读:
    ES6 Promise多步骤操作
    RPN
    全连接层提速
    Fast R-CNN
    smooth L1损失函数
    ROI pooling
    SPP Net
    R-CNN常见问题
    R-CNN
    NMS
  • 原文地址:https://www.cnblogs.com/deman/p/4274364.html
Copyright © 2011-2022 走看看