摘要: Panel is deprecated and will be removed in a future version.The recommended way to represent these types of 3-dimensional data are with a MultiIndex o 阅读全文
posted @ 2019-03-15 22:01 zhg1016 阅读(15697) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash #查找并删除重复文件,每个文件只保留1份 ls -LS --time-style=long-iso | awk 'BEGIN { getline; getline; name1=$8; size=$5 } { name2=$8 if(size==$5) { "md5sum " 阅读全文
posted @ 2019-03-15 12:25 zhg1016 阅读(294) 评论(0) 推荐(0) 编辑
摘要: $ dd if=/dev/zero of=junk.data bs=1M count=1 参数: if (input file) of (output file) bs(block size) count(需要复制的块数) bs 单位(c w B K M G) /dev/zero 特殊的字符设备,返 阅读全文
posted @ 2019-03-15 11:58 zhg1016 阅读(1268) 评论(0) 推荐(0) 编辑
摘要: -exec 创建子shell $ find . -exec sh -c 'echo -n {} | tr -d "[:alnum:]_.\-" | \ tr "/" " "; basename {}' \; 文件汇总信息 for d in `find . -type d`; do echo `fin 阅读全文
posted @ 2019-03-15 11:45 zhg1016 阅读(549) 评论(0) 推荐(0) 编辑