美文网首页
Linux基础命令四(2018-05-06)

Linux基础命令四(2018-05-06)

作者: 糊涂蟲 | 来源:发表于2018-05-08 21:11 被阅读0次

    1、上传下载

    yum install lrzsz        安装包

    rz     :windows====>linux

    sz    :linux=====>windows

    2、作业调度

    crontab        -e(edit) 编辑                -l(list)  查看

    格式:*    *    *    *    *     命令

    五个星分别代表分时月日周    例如每隔5分钟:第一个*/5

    每十秒钟需要用到for循环,打印6次,每打印一次sleep 10s

    #!/bin/bash

    for((i=1;i<=6;i++));

    do

        date

        sleep 10s

    done

    3、绝对路径和相对路径

    cd     /etc/passwd   绝对路径

    cd      ./passwd        相对路径

    4、后台执行命令

    ./date.sh &

    nohup ./date.sh

    5、多人合作,后台会话

    会话状态        1.detached 无人            2.Attached 有人

    screen    -S(sockname)    创建一个会话

                    -r                            进入一个无人(detached)的会话(-r +id  或者-r +会话名)

                    -l(list)                 查看会话列表

    ctrl+a+d                                退出会话

    6、下载软件

    weget  xxxxx链接

    相关文章

      网友评论

          本文标题:Linux基础命令四(2018-05-06)

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