ed

更改CRT命令行颜色

本秂侑毒 提交于 2020-02-25 19:03:35
把此目录(没有就手动创建)和文件复制到SecureCRT的配置目录-C:\Users\think\AppData\Roaming\VanDyke\Config\keywords中即可更改命令颜色 配置文件为colorful-network.ini 文件内容如下 D:"Match Case"=00000000 Z:"Keyword List V2"=00000016 "(no(t)?(connect)?)|((shut)?(down)?)",000000ff,00000001 "(dis((able(d)?)|(connect(ed)?)|(allow(ed)?)|(card(ed)?))|(error(s)?))|(fail((ure)|(ed))?)|((city)?[w]{2}m)|(den((y)|(ied)){1})",000000ff,00000001 "red|administratively|undo|unknown|fault|block|refused|problem|warnings|alerts|critical|delete|inactive|unassigned",000000ff,00000001 "(([7-9]\d)|(100))(\.\d{0,2})?\%",000000ff,00000001 "green|up|forward|full

For loop in Makefile has no effect

纵饮孤独 提交于 2020-01-15 05:11:26
问题 I have a one-line script passed into the foreach function in a Makefile, as shown below: flag: $(foreach f, $*.txt, printf "%s\n" 0a "$(grep -o '[0-9]\+' $f | sed 's/.*/read \"&\"/')" "" . w q | ed $f) What this script line does could be found here. I am just puzzled why it doesn't work this way, because if I put the line into a separate script and call it from the Makefile like this: flag: $(forech f, $*.txt, ./script $f) it works fine. I also tried the shell for loop as follows: flag: for f

清北学堂(2019 5 2) part 5

这一生的挚爱 提交于 2019-12-25 17:29:18
今天讲图论,顺便搞一搞之前没弄完的前向星dij 1.图的基本概念(课件原话):    G (图) = ( V(点) ; E(边) )   一般来说,图的存储难度主要在记录边的信息   无向图的存储中,只需要将一条无向边拆成两条即可   邻接矩阵:用一个二维数组 edg [ N ][ N ] 表示   edg [ i ][ j ] 就对应由 i 到 j 的边信息   edg [ i ][ j ] 可以记录 Bool ,也可以记录边权   缺点:如果有重边有时候不好处理   空间复杂度 O ( V 2 )   点度(出边入边条数)等额外信息也是很好维护的   模板(传说中的链式前向星/链式存图): #include<bits/stdc++.h> using namespace std; const int N=100; int n,m,s; struct Ed{ int next,dis,to; }ed[N]; int ed_num; int tail[N]; inline void add(int from,int to,int dis){ ed_num++; ed[ed_num].dis=dis; ed[ed_num].to=to; ed[ed_num].next=tail[from]; tail[from]=ed_num; } int main(){ scanf("%d%d%d"

How can heredocs be used with xargs?

左心房为你撑大大i 提交于 2019-12-11 04:26:52
问题 Background I'm looking to strip any # TODO comments from some python source code files output by git archive before sending it off. I'm looking to do so from a script that will be run from a variety of *nix OSes, so it should be as POSIX-compliant as possible. I'm aware that find -print0 and xargs -0 aren't in the base spec, but they appear to be common enough that I'm fine with using them (unless a better alternative exists). I'm using ed due to sed -i not being in the base spec for in-place

CRT8.0字体配色方案设置

醉酒当歌 提交于 2019-12-04 20:18:01
1、点击Option → Global Option → General → Configuration Paths查看配置文件目录 2、在配置文件目录新建keywords文件夹 3、新建ini后缀文件,填入以下内容 D:"Match Case"=00000000 Z:"Keyword List V2"=00000016 "(no(t)?(connect)?)|((shut)?(down)?)",000000ff,00000001 "(dis((able(d)?)|(connect(ed)?)|(allow(ed)?)|(card(ed)?))|(error(s)?))|(fail((ure)|(ed))?)|((city)?[w]{2}m)|(den((y)|(ied)){1})",000000ff,00000001 "red|administratively|undo|unknown|fault|block|refused|problem|warnings|alerts|critical|delete|inactive|unassigned",000000ff,00000001 "(([7-9]\d)|(100))(\.\d{0,2})?\%",000000ff,00000001 "green|up|forward|full|active",0000ff00,00000001

K'ed by TNT team是什么意思?

倾然丶 夕夏残阳落幕 提交于 2019-12-03 04:16:59
   参考资料:    https://www.zhihu.com/question/319316132    https://www.reddit.com/r/Piracy/comments/9lk20b/tnt_crack_source/   在Mac破解软件里经常会看到这样的字样,K'ed by TNT team.   首先K'ed是cracked的缩写,cracked即破解后的   TNT team据传是一个俄罗斯的破解团队,专门破解mac软件的签名许可证之类类。   那么这行字就是说这个破解版的软件是由我们团队(TNT团队破解的)。   这个团队的资源发布在哪呢?   据说是以下几个网址:    https://inmac.org/    https://cmacapps.com/    https://mac-torrent-download.net/   国内门户搬运他们的破解软件,所以经常会看到如题字样。inmac.org还是一个邀请制的网站,可见TNT团队也是相当神秘。 来源: https://www.cnblogs.com/chester-cs/p/11776571.html

K&#039;ed by TNT team是什么意思?

匿名 (未验证) 提交于 2019-12-03 00:15:02
   参考资料:    https://www.zhihu.com/question/319316132    https://www.reddit.com/r/Piracy/comments/9lk20b/tnt_crack_source/   在Mac破解软件里经常会看到这样的字样,K'ed by TNT team.   首先K'ed是cracked的缩写,cracked即破解后的   TNT team据传是一个俄罗斯的破解团队,专门破解mac软件的签名许可证之类类。   那么这行字就是说这个破解版的软件是由我们团队(TNT团队破解的)。   这个团队的资源发布在哪呢?   据说是以下几个网址:    https://inmac.org/    https://cmacapps.com/    https://mac-torrent-download.net/   国内门户搬运他们的破解软件,所以经常会看到如题字样。inmac.org还是一个邀请制的网站,可见TNT团队也是相当神秘。 来源:博客园 作者: 思念殇千寻 链接:https://www.cnblogs.com/chester-cs/p/11776571.html

WinDbg常用命令系列---输入内存值的命令e*

匿名 (未验证) 提交于 2019-12-03 00:09:02
e, ea, eb, ed, eD, ef, ep, eq, eu, ew, eza (Enter Values) e*命令将您指定的值输入内存。不要将此命令与~e(Thread-Specific Command)限定符混淆。 e { b | d | D | f | p | q | w } Address [ Values ] e { a | u | za | zu } Address "String" e Address [ Values ] 参数: Address 指定输入值的起始地址。 调试器将替换地址和每个后续内存位置处的值,直到所有值都被使用为止。 Values 指定要输入内存的一个或多个值。多个数值应该用空格分隔。如果未指定任何值,则将显示当前地址和该地址的值,并提示您输入。 String 指定要输入内存的字符串。ea和eza命令将此作为ascii字符串写入内存;eu和ezu命令将此作为unicode字符串写入内存。eza和ezu命令会写入一个终端空值;ea和eu命令不会。字符串必须用引号括起来。 环境: ģʽ 用户模式下,内核模式 目标 实时、 崩溃转储 ƽ̨ 全部 此命令存在于以下表单中。ed和eD命令的第二个字符区分大小写。 Command Enter e 这将以与最新的e*命令相同的格式输入数据。(如果最新的e*命令是ea、eza、eu或ezu

最小费用最大流模板

匿名 (未验证) 提交于 2019-12-03 00:05:01
1 #include<cstdio> 2 #include<queue> 3 #include<cstring> 4 #include<queue> 5 #include<algorithm> 6 #define INF 2147483647 7 #define LL long long 8 using namespace std; 9 queue<int>q; 10 int n,m,m1,t1,m2,t2,num=-1,st,ed; 11 struct node{ 12 int x,y,c,d,next; 13 }G[100000]; 14 int b[100000],head[100000],pre[100000],pos[100000],max_flow[100000]; 15 LL dis[100000]; 16 bool vis[100000]; 17 void ins(int x,int y,int c,int d) 18 { 19 G[++num].x=x;G[num].y=y;G[num].c=c;G[num].d=d;G[num].next=head[x];head[x]=num; 20 G[++num].x=y;G[num].y=x;G[num].c=0;G[num].d=-d;G[num].next=head[y];head[y]=num; 21 } 22

Knight Moves

元气小坏坏 提交于 2019-12-02 23:18:35
https://loj.ac/problem/10028 题目描述   在一个 \(L×L\) 的棋盘中,给出马的初始位置和终止位置,求最少跳多少步从初始到终止。 思路    \(bfs\) 的模板题,不过为了提高速度我们可以采用双向宽度搜索,分别从起始位置和终止位置进行 \(bfs\) ,在判断何时两个 \(bfs\) 在同一地点相遇即可。为了避免效率过低,我们可以每次选择队列中节点少的进行拓展。 代码 #include <bits/stdc++.h> using namespace std; struct aa { int x,y; }st,ed; int dx[10]={1,1,-1,-1,2,2,-2,-2}; int dy[10]={2,-2,2,-2,1,-1,1,-1}; int dis[3][330][330],l,ans; queue<aa>q[3]; bool vis[3][330][330]; bool expand(int k) { aa now=q[k].front();q[k].pop(); int d=dis[k][now.x][now.y]; for(int i=0;i<8;i++) { aa nex; nex.x=now.x+dx[i];nex.y=now.y+dy[i]; if(nex.x<=0||nex.x>l||nex.y<=0||nex.y