码迷,mamicode.com
首页 >  
搜索关键字:rm    ( 4388个结果
树莓派3b的raspberrypi系统更改默认的python版本
输入python看默认版本,一般是2.7。 1、删除软链接命令 pi@raspberrypi:~ $ sudo rm /usr/bin/python 2、查看本机安装的python版本及路径 pi@raspberrypi:~ $ whereis python python: /usr/bin/pyt ...
分类:编程语言   时间:2021-07-14 18:43:59    阅读次数:0
CentOS8更换yum源
cd /etc/yum.repos.d/ rm -f CentOS-Base.repo CentOS-AppStream.repo CentOS-PowerTools.repo CentOS-centosplus.repo CentOS-Extras.repo curl -o CentOS-Base ...
分类:其他好文   时间:2021-07-05 16:52:40    阅读次数:0
reverse operation of git add
before commit, do: git rm --cached <filename> ATTENTION: do not use 'git rm <filename>', this will delete the file from disk if commited, first use: " ...
分类:其他好文   时间:2021-07-01 17:07:16    阅读次数:0
删除git文件版本控制
//-n 预览需要删除版本控制的文件列表 git rm -r -n --cached "vendor" //执行删除命令 git rm -r --cached "vendor" //添加文件到.gitignore //提交git commit -m "remove vendor" //提交到远程服务 ...
分类:其他好文   时间:2021-07-01 17:03:23    阅读次数:0
Docker(39)- docker 实战二之安装 Tomcat
背景 参考了狂神老师的 Docker 教程,非常棒! https://www.bilibili.com/video/BV1og4y1q7M4?p=15 直接运行容器 本地找不到镜像会自动下载 --rm Automatically remove the container when it exits ...
分类:其他好文   时间:2021-07-01 16:48:43    阅读次数:0
R语言中批量加载函数
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
Mac下MySQL卸载方法
Mac下MySQL卸载方法 由于某种情况下,需要删除mysql。 mac下mysql的DMG格式安装内有安装文件,但没有卸载文件 查了一下,原来得手动去删。把关键点记述在这里,以供查阅。 先停止所有mysql服务。 sudo rm /usr/local/mysql sudo rm -rf /usr/ ...
分类:数据库   时间:2021-06-24 18:32:36    阅读次数:0
Mac如何删除已经安装的jdk环境
1.删除运行路径和运行环境等 sudo rm -fr /Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin 输入密码: sudo rm -fr /Library/PreferencesPanes/JavaControlPanel.prefPane s ...
分类:系统相关   时间:2021-06-24 17:35:34    阅读次数:0
svn
服务器svn重新生成--Git clone 1588 svn info 1589 cd .. 1590 rm rules -fr 1591 ls 1592 svn up 1593 svn co http://svn.xxxxx.com/xxxxx/uledeploy_doc/prometheus/r ...
分类:其他好文   时间:2021-06-22 18:16:56    阅读次数:0
docker 报错,使用这个脚本安装
#!/bin/bash rm -rf /var/lib/docker yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate ...
分类:其他好文   时间:2021-06-21 19:53:25    阅读次数:0
4388条   1 2 3 4 ... 439 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!