标签:.gz TE comm tar.gz com 个数 24* tar tutorial
---------------------------------------------------------------------------------------------
git的应用介绍 https://backlog.com/git-tutorial/cn
提交流程
git status
git pull
git add files
git commit -m "描述"
git push
下载
git clone 地址
-------------------------------------------------------------------------------------------
pycharm操作
Ctral+r 替换 Shift+F6 重命名
-------------------------------------------------------------------------------------------
linux 操作
du -sh 目录或者文件 (查看目录或者文件的大小)
vi 编辑 :q 退出vi编辑
date -d 20180101 +%j
# 查看当前目录下的文件数量(不包含子目录中的文件)
ls -l|grep "^-"| wc -l
# 查看当前目录下的文件数量(包含子目录中的文件) 注意:R,代表子目录
ls -lR|grep "^-"| wc -l
# 查看当前目录下的文件夹目录个数(不包含子目录中的目录),同上述理,如果需要查看子目录的,加上R
ls -l|grep "^d"| wc -l
# 查询当前路径下的指定前缀名的目录下的所有文件数量
# 例如:统计所有以“20161124”开头的目录下的全部文件数量
ls -lR 20161124*/|grep "^-"| wc -l
-------------------------------------------------------------------------------------------
wget -c https://data2.gosat.nies.go.jp/wgetdata/GU/FTSL1B/2018/05/FTSL1B_20180530_210210.tar.gz --cut-dirs=3 --http-user=用户名 --http-password=密码
标签:.gz TE comm tar.gz com 个数 24* tar tutorial
原文地址:https://www.cnblogs.com/xiaoxiaoshuaishuai0219/p/9211823.html