最近写了一个shell脚本,用到了cp、time、cut、awk命令,把他们的使用方法给写下来:1.cp和mvcp命令:用来完成文件的复制,从源文件夹复制到目标文件夹。执行后源文件夹和目标文件夹均有源文件。mv
命令:用来移动文件。执行后,源文件夹中没有源文件。我经常用mv命令来重命名文件注意:cp...
分类:
系统相关 时间:
2014-06-29 14:03:19
阅读次数:
5085
GPS(Graph Processing
System),java.lang.OutOfMemoryError: Java heap space,Rdflib,No handlers could be
found for logger "rdflib.term"does not look like ...
分类:
其他好文 时间:
2014-06-06 17:37:26
阅读次数:
348
OGNL表达式(Object-Graph Navigation Language),大概可以理解为:对象图形化导航语言。是一种可以方便地操作对象属性的开源表达式语言。...
分类:
其他好文 时间:
2014-06-02 23:23:28
阅读次数:
304
二分图bipartite
使用BFS广度优先判断一个图是否是二分图。基本图操作。
参考
http://www.geeksforgeeks.org/bipartite-graph/
#pragma once
#include
#include
#include
using namespace std;
class CheckwhetheragivengraphisBipa...
分类:
其他好文 时间:
2014-06-01 15:03:24
阅读次数:
288
DescriptionGeorge took sticks of the same
length and cut them randomly until all parts became at most 50 units long. Now
he wants to return sticks to ...
分类:
其他好文 时间:
2014-05-30 23:00:32
阅读次数:
395
最近在复习自己的linux笔记,看到cut和sort的时候突然想起一直遗忘做的一件事:给某文本文件去重。发现用这两条指令的组合可以很轻松的完成自己想做的工作。要处理的原文本文件一条数据的格式是:str1
# str2 #str3,每行一条这种格式的数据。我需要的只是str2去重后的数据,所以可以这么...
分类:
其他好文 时间:
2014-05-30 20:18:52
阅读次数:
410
ifconfig |grep "inet addr"|cut -f 2 -d":"|cut
-f 1 -d " "|head -n 1ifconfigeth0 Link encap:Ethernet HWaddr xx:xx:xx:xx:xx:xx
inet addr:192.168.1.100 ....
分类:
系统相关 时间:
2014-05-29 20:55:58
阅读次数:
435
Problem: Given a two-dimensional graph with
points on it, find a line which passes the most number of points.此题是Cracking the
code 5th edition 第七章第六题,思...
分类:
其他好文 时间:
2014-05-29 08:10:38
阅读次数:
292
目前为止介绍的都是数据的重排。另一类重要操作则是过滤、清理以及其他的转换工作。...
分类:
编程语言 时间:
2014-05-26 04:02:14
阅读次数:
570
sort:排序所有指定文件并将结果写到标准输出。-u:去除重复行-r:反向排序-n:数值排序从小到大-t:指定分段的符号-k:指定的第几个段-b:忽略所有空白行[root@station141~]#sortAndy.txt
1
2
2
34
56
accp
benet
I‘msorry,Mr.
Threepineapple
Twowatermelon
Waterontherefrig..
分类:
其他好文 时间:
2014-05-24 15:43:57
阅读次数:
342