ls ls -a 显示全部文件(含隐藏) ls -l 以列表方式显示 ls -lh列表更加人性化() pwd 查看当前所在目录位置 cd 切换目录 cd .. 切回上一级目录 (注意此处需要空格) cd / 切回根目录 mkdir 创建文件夹 mkdir /home/admin/aa 绝对路径创建 ...
分类:
系统相关 时间:
2021-02-19 12:52:05
阅读次数:
0
1)上午打开移动硬盘时,发现之前从MAC上拷贝的部分电影无法正常播放(显示为虚色,修改时间也被改 变),提示:项目“XXX”已被 OS X 使用,不能打开。这是由于文件曾经在MAC上打开过,被系统添加 额外的属性。 2)在终端中进入到硬盘内的对应文件目录,输入:ls -l 命令,可以看到: 这些被占 ...
分类:
其他好文 时间:
2021-02-17 14:03:48
阅读次数:
0
工作区: 就是git仓库的目录就属于工作区 [root@node4 git]# pwd/git[root@node4 git]# lsreadme.txt[root@node4 git]# ls -a. .. .git readme.txt[root@node4 git]# cd .git/[roo ...
分类:
其他好文 时间:
2021-02-16 12:34:56
阅读次数:
0
有时候我们需要查找可执行程序的依赖的动态库,我们可以使用 readelf ,比如这样》 [root@RV1126_RV1109:/py-spidev]# readelf -d /bin/ls | grep "Shared library" 0x00000001 (NEEDED) Shared lib ...
分类:
其他好文 时间:
2021-02-10 13:14:04
阅读次数:
0
今日打算安装一下ReactNative官方推荐的脚手架工具Ignite。 文章目录 node版本升级 1.查看可以安装的node版本 2.选择一个版本进行安装 3.查看已安装的版本 遇到报错 查找问题所在 解决问题 node版本升级 1.查看可以安装的node版本 nvm ls-remote 1 2 ...
分类:
移动开发 时间:
2021-02-09 12:21:13
阅读次数:
0
Jenkins 部署项目出现 Failed to connect to repository : Command "git ls-remote XXX 表示为,Jerkins无法连接到你输入的Repository URL的 Git仓库…… 怎么办呢? 试了很多方法: 1、在git仓库里面配置公钥、在 ...
分类:
其他好文 时间:
2021-02-08 12:50:48
阅读次数:
0
默认centos, unbtan都已经安装了python3版本,可以通过 whereis python来检查已经安装的版本。 root@hecs-x-medium-2-linux-20200619090653:/usr/bin# whereis pythonpython: /usr/bin/pyth ...
分类:
编程语言 时间:
2021-02-08 12:04:26
阅读次数:
0
各种feature的实现 执行shell 处理时间 处理参数 处理文件 logging test 多线程、进程,并发 语言 python groovy scala java C++ C shell go 执行shell, check output groovy a= "ls".execute(); ...
分类:
编程语言 时间:
2021-02-03 10:42:48
阅读次数:
0
The computer company you work for is introducing a brand new computer line and is developing a new Unix-like operating system to be introduced along w ...
分类:
其他好文 时间:
2021-02-01 12:53:22
阅读次数:
0
code macname@MacdeMacBook-Pro zipfiles % cat test.sh #!/bin/bash ZIP_FILES=$(ls *.zip) for zip_file in $ZIP_FILES; do unzip $zip_file done macname@Mac ...
分类:
系统相关 时间:
2021-02-01 11:49:14
阅读次数:
0