码迷,mamicode.com
首页 >  
搜索关键字:ls -ld    ( 8268个结果
linux shell if语句
1、测试1 [root@centos7 test2]# ls a.txt [root@centos7 test2]# if [ -e a.txt ]; then echo "exist";else echo "no nxist"; fi exist [root@centos7 test2]# if ...
分类:系统相关   时间:2021-04-23 11:53:02    阅读次数:0
linux shell脚本中流程控制语句 if 、for、while、case
linux shell脚本中流程控制语句 if、for、while、case 1、if语句 [root@centos7 test2]# ls test.sh [root@centos7 test2]# pwd /home/test2 [root@centos7 test2]# cat test.sh ...
分类:系统相关   时间:2021-04-22 16:20:40    阅读次数:0
python创建二维列表
ls = [[] for i in range(7)] print('ls==', ls) for k in range(1, 7): # 1-9 test = [i for i in range(k)] ls[k] = test print('ls==', ls) 运行结果: ...
分类:编程语言   时间:2021-04-21 11:59:58    阅读次数:0
linux 常用的命令
查看所有用户任务计划 cat /etc/passwd | cut -f 1 -d : |xargs -I {} crontab -l -u {} 查看设备的挂载情况 lsblk lsblk -f 查看rhel或centos版本 cat /etc/redhat-release 查看最后登陆信息 las ...
分类:系统相关   时间:2021-04-20 15:45:36    阅读次数:0
ZooKeeper客户端
命令基本语法 功能描述 help 显示所有操作命令 ls path [watch] 显示所有操作命令 ls path [watch] 查看当前节点数据并能看到更新次数等数据 create 普通创建, -s 含有序列, -e 临时(重启或者超时消失) get path [watch] 获得节点的值 s ...
分类:其他好文   时间:2021-04-20 15:33:29    阅读次数:0
Binder杂记
1. Binder的系统日志文件 # ps -A | grep suspend system 699 1 2184444 4564 binder_ioctl_write_read 0 S android.system.suspend@1.0-service # ls /proc/699/fd -l ...
分类:其他好文   时间:2021-04-19 15:59:18    阅读次数:0
Android 终端操作
pwd,打印当前目录 ls:List information about the FILEs (the current directory by default) -a/--all -d/--directory dir -a 进入如camera的目录后运行dir、ls会卡住(可以ctrl+c退出)。 ...
分类:移动开发   时间:2021-04-16 12:10:03    阅读次数:0
32、Device or resource busy故障处理
问题原因:逻辑卷在磁盘下,无法直接mkfs 格式化磁盘 [root@VM_0_8_centos ~]# dmsetup ls vdb1 (252:0) dmsetup remove vdb1 mkfs.xfs /dev/vdb1 ...
分类:其他好文   时间:2021-04-16 12:08:51    阅读次数:0
linux 删除中文乱码
ls -li find . -inum 1840704 -exec rm {} -rf \; ...
分类:系统相关   时间:2021-04-15 12:07:25    阅读次数:0
查看本机ssh公钥
打开命令行,依次输入以下名利即可 cd ~/.ssh ls cat id_rsa.pub 或者 vim id_rsa.pub 以ssh-rsa开头,用户名结尾的这一整段内容,就是我们需要的ssh公钥了 ...
分类:其他好文   时间:2021-04-14 11:59:31    阅读次数:0
8268条   上一页 1 ... 5 6 7 8 9 ... 827 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!