美文网首页
bash: commonly used commands

bash: commonly used commands

作者: Andy512 | 来源:发表于2019-06-21 23:35 被阅读0次

    copy a file from one directory to current directory:
    cp path/to/file.txt .
    . can be used to refer to the current directory.


    make a directory and cd into it:
    mkdir xx && cd xx
    multi operations in one line can be combined with &&.

    相关文章

      网友评论

          本文标题:bash: commonly used commands

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