5 4 4 3 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 linux 中的文章

centos7安装新版本的git客户端

linux中访问github:参见: https://gitclone.com/ 1 2 3 4 5 6 7 方法一(替换URL) git clone https://gitclone.com/github.com/tendermint/tendermint.git 方法二(设置git参数) git config --global url."https://gitclone.com/".insteadOf https:// git clone https://github.com/tendermint/tendermint.git 方法三(使用cgit客户端) cgit clone https://github.com/tendermint/tendermint.git 安装新版本的git客户端: 使用 https://ius.io/ 源 1 2 3 4 5 6 7 curl -sSL https://setup.ius.io | sh # 查看哪些包提供git这个命令 yum provides git # 这里结果显示最新版本为ius提供……

阅读全文

虚拟机中Linux磁盘空间进行扩容

虚拟机中Linux磁盘空间进行扩容 直接在虚拟机中对Linux进行磁盘容量扩容,如果有快照必须先删除快照再扩容. 然后重启虚拟机 查看磁盘空间信息 fdisk -l 增加分区 fdisk /dev/sda 输入n 输入p 按照分区信息输入下一个编号(3) 使用默认的起始扇区和结束扇区,两次回车,输入t,设置分区类型为8e 输入w保存分区……

阅读全文

文件夹批量改名&批量解压

文件夹批量改名&批量解压 将2020xxxx批量修改为xxxx 1 2 3 4 5 6 7 8 9 for f in ls /root/testdata1/data/OB/2020 do if test -f $f then echo $f "is file" else mv /root/testdata1/data/OB/2020/$f /root/testdata1/data/OB/2020/${f##2020} fi done win批量解压sz @echo off set path=D:\Program Files\7-Zip;%path% cd L2-shenzhen\2020 for /d %%i in () do ( echo %%i 7z e %%i*trade.7z.001 -o..\%%i\ ) pause win批量解压OB @echo off set path=D:\Program Files\7-Zip;%path% cd OB\2020 for %%i in (*.7z) do ( echo %%i 7z x %%i *\SZ000725 *\SZ002475 *\SZ300185 *\SZ300059 *\SZ300433 *\SZ002241 *\SZ002549 *\SZ002797 *\SZ123048 *\SZ000100 -y ) pause……

阅读全文