码迷,mamicode.com
首页 >  
搜索关键字:find    ( 24186个结果
gyp ERR! stack Error : can't find python executable "python",you can set the PYTHON env variable.
vue中安装node-sassnpm install node-sass --save-dev1出现上面图中问题 解决办法:vscode里,打开终端,输入下面的内容先输入(在管理员模式下打开) npm install --global --production windows-build-tools ...
分类:编程语言   时间:2021-04-14 11:49:56    阅读次数:0
Leetcode** 162. Find Peak Element
Description: A peak element is an element that is strictly greater than its neighbors. Given an integer array nums, find a peak element, and return it ...
分类:其他好文   时间:2021-04-13 11:52:46    阅读次数:0
Python使用sql语句对mysql数据库多条件模糊查询
1 def find_worldByName(c_name,continent): 2 print(c_name) 3 print(continent) 4 sql = " SELECT * FROM world WHERE 1=1 " 5 if(c_name!=None): 6 sql=sql+" ...
分类:数据库   时间:2021-04-12 12:45:06    阅读次数:0
个人常用的linux运维命令 --- 间歇性更新中
查看磁盘剩余容量,一定要注意磁盘剩余容量。如果容量不足可能会导致web服务异常,mysql服务无响应等。 df -h 查询磁盘100M以上的文件 find / -type f -size +100M -print0 | xargs -0 du -h | sort -nr 查看定时任务 crontab ...
分类:系统相关   时间:2021-04-09 13:40:10    阅读次数:0
安装chromedriver.exe的报错,pycharm跑起来报错提示
报错提示 今天,在复习整理Ui自动化的东西,学习selenium的时候,要先进行安装浏览器驱动;安装好了之后,跑一下,报错 :selenium.common.exceptions.WebDriverException: Message: unknown Error: cannot find Chro ...
分类:其他好文   时间:2021-04-09 13:29:22    阅读次数:0
153. 寻找旋转排序数组中的最小值 二分
已知一个长度为 n 的数组,预先按照升序排列,经由 1 到 n 次 旋转 后,得到输入数组。例如,原数组 nums = [0,1,2,4,5,6,7] 在变化后可能得到: 若旋转 4 次,则可以得到 [4,5,6,7,0,1,2] 若旋转 4 次,则可以得到 [0,1,2,4,5,6,7] 注意,数 ...
分类:编程语言   时间:2021-04-08 13:56:57    阅读次数:0
find 查找练习
1、查找/var目录下属主为root,且属组为mail的所有文件 有目录没有文件,-type f [14:29:30 root@centos7 ~]#find /var -user root -a -group mail -ls 67142179 4 drwxrwxr-x 2 root mail 4 ...
分类:其他好文   时间:2021-04-08 13:25:06    阅读次数:0
在centos7.5中解决bash: pip:command not find 问题
在centos7.5中解决bash: pip:command not find 问题 [root@localhost ~]# python get-pip.py Hi there! The URL you are using to fetch this script has changed, and ...
分类:其他好文   时间:2021-04-08 13:04:02    阅读次数:0
linux查找删除大文件
查找 find . -type f -size +10M -print0 | xargs -0 du -h | sort -nr 删除,指定名字的所有文件 find ./xx -name "xx" -type f -print -exec rm -rf {} \; 计数 ls -l|grep "^- ...
分类:系统相关   时间:2021-04-07 11:19:58    阅读次数:0
第2章(part_02)
补充命令: tracepath 网址 -- 路由跟踪 netstat –an -a 所有开放端口号查询 -n ip地址查看 netstat –an | grep 80 查看80端口号是否开启 tree 查看目录的结构关系 find 查找文件位置 可用--type b/d/c/p/l/f 参数指定文件 ...
分类:其他好文   时间:2021-04-06 15:02:57    阅读次数:0
24186条   上一页 1 ... 8 9 10 11 12 ... 2419 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!