上一页 1 ··· 360 361 362 363 364 365 366 367 368 ··· 375 下一页
摘要: 1、linux系统中useradd命令用于创建新的用户 使用方法 useradd name [root@linuxprobe home]# ls linuxprobe software [root@linuxprobe home]# pwd ##路径 /home [root@linuxprobe h 阅读全文
posted @ 2020-10-19 18:16 小鲨鱼2018 阅读(597) 评论(0) 推荐(0) 编辑
摘要: 1、crontab命令用于创建系统能够周期性、有规律地执行某些具体的任务 直接测试:crontab -e 进行创建、编辑任务 [root@linuxprobe test]# ls ## 查看测试文件 a.txt [root@linuxprobe test]# ll -h total 6.6M -rw 阅读全文
posted @ 2020-10-19 17:15 小鲨鱼2018 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 1、一次性计划任务服务顾名思义只执行一次,直接测试 [root@linuxprobe test]# date ## 查看系统当前日期 Mon Oct 19 12:45:10 CST 2020 [root@linuxprobe test]# at 12:48 ## 使用格式, at + 时间,表示在1 阅读全文
posted @ 2020-10-19 13:31 小鲨鱼2018 阅读(534) 评论(0) 推荐(0) 编辑
摘要: 1、case命令选择执行 [root@linuxprobe test]# ls test.sh [root@linuxprobe test]# cat test.sh ## 查看脚本 #!/bin/bash echo "This is a test!" echo "you can choose 0- 阅读全文
posted @ 2020-10-19 12:35 小鲨鱼2018 阅读(1157) 评论(0) 推荐(0) 编辑
摘要: 1、 [root@linuxprobe test]# ls ## 测试数据 a.txt [root@linuxprobe test]# cat a.txt fd gfd fgd fsdafds dfs sff [root@linuxprobe test]# cat -A a.txt ^I^Ifd g 阅读全文
posted @ 2020-10-19 12:13 小鲨鱼2018 阅读(864) 评论(0) 推荐(0) 编辑
摘要: 1、测试数据 [root@linuxprobe test]# ls ## 测试数据 a.txt [root@linuxprobe test]# cat a.txt fd gfd fgd fsdafds dfs sfa [root@linuxprobe test]# cat -A a.txt fd g 阅读全文
posted @ 2020-10-18 21:36 小鲨鱼2018 阅读(4677) 评论(0) 推荐(0) 编辑
摘要: 1、linux系统中find命令主要用于查找文件,可以设置不同的查找条件进行查找 创建测试数据: [root@linuxprobe test]# touch a.txt b.txt c.txt ## 创建三个普通文件 [root@linuxprobe test]# mkdir test1 test2 阅读全文
posted @ 2020-10-17 07:14 小鲨鱼2018 阅读(401) 评论(0) 推荐(0) 编辑
摘要: 1、linux系统中字符串比较语句用来判断字符串是否相等、或者字符串的代表的变量是否被赋值过 = 表示字符串是否相同 [root@linuxprobe test]# a=xxx [root@linuxprobe test]# [ $a = "xxx" ] [root@linuxprobe test] 阅读全文
posted @ 2020-10-16 22:12 小鲨鱼2018 阅读(1958) 评论(0) 推荐(0) 编辑
摘要: 1、-eq 表示等于 [root@linuxprobe test]# [ 3 -eq 4 ] [root@linuxprobe test]# echo $? 1 [root@linuxprobe test]# [ 3 -eq 3 ] [root@linuxprobe test]# echo $? 0 阅读全文
posted @ 2020-10-16 21:37 小鲨鱼2018 阅读(506) 评论(0) 推荐(0) 编辑
摘要: 1、查看系统、java安装情况 [root@linuxprobe ~]# cat /etc/system-release Red Hat Enterprise Linux release 8.0 (Ootpa) [root@linuxprobe ~]# java bash: java: comman 阅读全文
posted @ 2020-10-16 18:55 小鲨鱼2018 阅读(1584) 评论(0) 推荐(0) 编辑
上一页 1 ··· 360 361 362 363 364 365 366 367 368 ··· 375 下一页