IntelliJ Idea 常用快捷键列表 Alt+回车 导入包,自动修正 Ctrl+N 查找类 Ctrl+Shift+N 查找文件 Ctrl+Alt+L 格式化代码 Ctrl+Alt+O 优化导入的类和包 Alt+Insert 生成代码(如get,set方法,构造函数等) Ctrl+E或者Alt+ ...
分类:
其他好文 时间:
2020-12-17 12:04:21
阅读次数:
2
把当前目录下面的file(不包括目录),移动到/home/jack find . -type f -exec mv {} /home/jack \; find . -type f | xargs -i '{}' mv {} /home/jack ...
分类:
移动开发 时间:
2020-12-11 12:18:51
阅读次数:
8
linux下查找文件中空行的行号 linux下查找文件中空行的行号 以aa.txt举例: 方法1:sed -n '/[a-zA-Z0-9@#$%^&*]/!=' aa.txt 方法2:grep -n ^$ aa.txt 方法3:awk '/^$/{print NR}' aa.txt 方法4:sed ...
分类:
系统相关 时间:
2020-12-07 12:22:19
阅读次数:
9
1.查找文件 find / -name filename.txt 根据名称查找/目录下的filename.txt文件。 2.查看一个程序是否运行 ps –ef|grep tomcat 查看所有有关tomcat的进程 3.终止线程 kill -9 19979 终止线程号位19979的线程 4.查看文件 ...
分类:
系统相关 时间:
2020-11-30 16:04:26
阅读次数:
20
#格式 find /data -type f find /data -type f -name "name" [root@oldboyedu ~]# find ./ -type f # 查找当前目录 并且显示隐藏文件 默认显示目录及目录以下所有符合的文件 ##按照名称查找 [root@oldboye ...
分类:
其他好文 时间:
2020-11-10 10:49:49
阅读次数:
6
用以下命令查找文件 sudo updatedb locate xxx #xxx是文件名 如果找不到命令,则需要安装mlocate sudo apt-get install mlocate ...
分类:
系统相关 时间:
2020-10-08 19:42:03
阅读次数:
24
最近没有更新博客,遇到国庆终于有时间学习并更新博客了~ 记录一下自己的学习 Linux一直是我的弱项,由于现在的工作需要用到Linux,决定恶补一下。 查找文件地址 find /home/ -name "test*" -type f # type 查找文件类型 -type d 为文件夹, -type ...
分类:
系统相关 时间:
2020-10-08 18:09:20
阅读次数:
25
使用 Linux 经常会遇到这种情况:只知道文件中包含某些特定的字符串,但是不知道具体的文件名。需要根据“特定的字符串”反向查找文件。 示例(路径文件如下): ./miracle/luna/a.txt a.txt 文件中的内容如下 Hello, World! 查找当前目录下,包含“Hello”字符串 ...
分类:
系统相关 时间:
2020-09-18 03:44:58
阅读次数:
48
find模块find模块可以帮助我们在远程主机中查找符合条件的文件,就像find命令一样。此处我们介绍一些find模块的常用参数,你可以先对这些参数有一个大概了解,然后再看小示例。paths参数:必须参数,指定在哪个目录中查找文件,可以指定多个路径,路径间用逗号隔开,此参数有别名,使用别名path或者别名name可以代替paths。recurse参数:默认情况下,只会在指定的目录中查找文件,也就是
分类:
其他好文 时间:
2020-09-11 16:07:11
阅读次数:
66
编写脚本实现在指定文件路径下查找文件夹或文件名。 脚本如下: #!/bin/sh # lazy find # GNU All-Permissive License # Copying and distribution of this file, with or without modificatio ...
分类:
系统相关 时间:
2020-08-09 09:19:05
阅读次数:
100