文件權限 什么是文件权限: 我们对当前文件可以干什么 看 写入 删除 执行 root 拥有最高执行权限 一个权限可以控制它 普通文件的默认权限 我们创建 vim touch echo后默认的权限 rw-r--r-- r 4 read 读取文件 cat less more vim sed w 2 wr ...
分类:
系统相关 时间:
2021-01-21 10:55:18
阅读次数:
0
1473G - Tiles 画图分析,可以发现路径形成了网格图,每一次的状态是一条斜线上的所有点,增加操作就是将网格图向外拓展,减少操作就是将网格图向内收拢。 可以分阶段统计,因为每次阶段上点的数量最大只会变化 \(5\),点数是 \(O(n)\) 级别的,相邻阶段之间可以用组合数转移。 \(f_{ ...
分类:
其他好文 时间:
2021-01-16 11:50:20
阅读次数:
0
UTF-8, UTF-16, UTF-32 & BOM General questions, relating to UTF or Encoding Forms Is Unicode a 16-bit encoding? Can Unicode text be represented in more ...
分类:
其他好文 时间:
2021-01-15 12:15:52
阅读次数:
0
Error This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, se ...
html代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>注册页面</title> </head> <body> <form action="/register" method="post"> <inpu ...
分类:
其他好文 时间:
2021-01-14 10:46:36
阅读次数:
0
cat 显示文本 -E 显示结尾的$符-n 对显示的每一行进行编号-b 对非空行进行编号-s 对连续的空行进行压缩 tac 倒序显示 less 分屏显示文本 向下翻一屏 空格 向下翻一行 回车 q 退出 / 文本 搜索文本 n 向下查找 N向上查找 less 是man命令的默认分页器 more 分页 ...
分类:
系统相关 时间:
2021-01-13 11:10:02
阅读次数:
0
好久没写博客了 这次准备在 cnblogs 和 我的博客 上同步更新~ # 题面 一个 \(n\) 个点 \(m\) 条边的 DAG,有若干个特殊点,边有权值。 一个单词定义为从点 \(1\) 出发到达一个特殊点的路径上,边权按访问顺序构成的一个序列。 \(Q\) 次询问,每次给出 \(k\),求所 ...
分类:
其他好文 时间:
2021-01-08 11:32:53
阅读次数:
0
将本地 tag 标签推送到远程: git push origin v0.1.0 当分支名与 tag 标签名相同时, 会出现无法推送指定标签的问题: error: src refspec v0.1.0 matches more than one. 尝试使用以下命令: git push origin r ...
分类:
其他好文 时间:
2021-01-07 11:55:33
阅读次数:
0
删除工作空间的目录org.eclipse.ui.workbench,重启开发工具 ...
分类:
其他好文 时间:
2021-01-06 12:31:18
阅读次数:
0
// C# program to find // combinations from n // arrays such that one // element from each // array is present using System; using System.Collections.G ...
分类:
其他好文 时间:
2021-01-06 12:08:17
阅读次数:
0