Linux常用命令 文件夹操作 序号 命令 解释 1 pwd 查看所在目录(绝对路径) 2 ls -l 或者 ll 查看当前目录下的所有东西(两者相同) 3 ls -lht 查看文件大小 4 tab 自动补全 5 touch xxx.txt 创建文本 6 mkdir xxx 创建文件夹 7 mv x ...
分类:
系统相关 时间:
2021-06-30 17:37:43
阅读次数:
0
LCS 操作对象:两个长度不一定相等的字符串。 例题 string s, t; int f[maxn][maxn]; int main() { cin >> s >> t; int ls = s.length(), lt = t.length(); for (int i = 1; i <= ls; ...
分类:
其他好文 时间:
2021-06-29 15:57:12
阅读次数:
0
1、 rm(list = ls()) dir() for (i in list.files(pattern=".r$")) { source(i) } 2、 rm(list = ls()) dir() for (i in dir()) { if(substr(i,nchar(i)-1,nchar(i ...
分类:
编程语言 时间:
2021-06-29 15:38:29
阅读次数:
0
1、列出子目录或子文件 hdfs dfs -ls +路径 2、创建目录(-p表示父目录都会创建) hdfs dfs -mkdir -p /001/mydemo/x/y/z hdfs dfs -mkdir /001/mydemo3 /001/mydemo4 /001/mydemo5 3、列出文件夹中的 ...
分类:
其他好文 时间:
2021-06-28 21:04:34
阅读次数:
0
经常使用命令行进行一些操作,一些常用的命令一遍遍的敲比较浪费时间,想通过别名的方式简化操作。 1、就是编辑~/.bash_profile,比如添加PS:=两边没有空格: alias st="git status" alias pull='git pull' alias push='git push' ...
分类:
系统相关 时间:
2021-06-28 20:41:29
阅读次数:
0
Ubuntu安装exa安装exa安装rust安装exa替代ls安装exaexa github项目地址https://github.com/ogham/exa查看官方文档可知,Ubuntu20.10以及更新的版本才可以用命令安装 sudo apt install exa安装rustrust官方给出的安 ...
分类:
系统相关 时间:
2021-06-28 19:02:12
阅读次数:
0
1、创建测试文件: [root@centos7 test]# touch {a..f}.txt [root@centos7 test]# ls a.txt b.txt c.txt d.txt e.txt f.txt 2、删除b.txt文件以外的所有文件 method1: [root@centos7 ...
分类:
系统相关 时间:
2021-06-25 16:56:49
阅读次数:
0
The task is really simple: given N exits on a highway which forms a simple cycle, you are supposed to tell the shortest distance between any pair of e ...
分类:
其他好文 时间:
2021-06-25 16:53:38
阅读次数:
0
Linux系统的目录结构 Windows系统 Linux系统 文件夹 目录 Windows系统:多根结构 C:\a\b\c D:\a\b\c Linux系统:单根结构 (根)/a/b/c/d 绝对路径与相对路径 从根开始写的路径就是绝对路径,否则就是根路径 ls / 根目录 ls -l / 更完整的 ...
分类:
系统相关 时间:
2021-06-25 16:35:38
阅读次数:
0
结论 配置demo: location xxx { root yyy } 浏览器访问 xxx,实际访问的是 yyy/xxx浏览器访问 xxx/abc.html,实际访问的是 yyy/xxx/abc.html浏览器访问 xxx/ccc/abc.html,实际访问的是 yyy/xxx/ccc/abc.h ...
分类:
其他好文 时间:
2021-06-24 17:47:20
阅读次数:
0