开始首先在自己家的目录创建一个文件夹用来保存删除的文件.recyclingmkdir-p~/.recycling修改.bachrc文件vim~/.bachrc在bachrc文件中添加下面内容aliasrm=trashaliasrl=‘ls~/.recycling‘aliasur=undelfileundelfile(){mv-i~/.recycling/$@./}trash(){mv$@~/.re
分类:
其他好文 时间:
2018-07-19 13:30:18
阅读次数:
153
```sh [root@localhost file1] ls a.htm b.htm c.htm d.htm pl.sh [root@localhost file1] vi pl.sh !/bin/bash for f in do mv $f done [root@localhost file1] ...
分类:
系统相关 时间:
2018-07-19 00:14:01
阅读次数:
168
简单的Linux命令 1. 删除文件及目录 rm -rf xxx 2. 下载压缩包 wget http://xxxxx 2. 解压 tar -xf xxx unzip xxx 3. 剪切文件夹及文件 [把第一个位置的文件放到第二个位置] mv ~/xxx/xxx ~/xxx/xxx 4. 全局查找文 ...
分类:
系统相关 时间:
2018-07-17 18:16:00
阅读次数:
223
前言使用Petschko's RPG-Maker-MV File-Decrypter进行解包使用Petschko's RPG-Maker-MV File-Decrypter (Java-Version)进行解包前言RPG Maker是由Enterbrain Incorporation公司出品的RPG... ...
分类:
其他好文 时间:
2018-07-16 14:12:09
阅读次数:
1008
一、把/data目录移动到/root目录里[root@oldboyedu50~]#mv/tmp/data/rootmv==move常出现的问题:ls:cannotaccess/data:nosuchfileordirectory二、进入/root目录/data目录删除oldboy.txt要删除文件,先备份[root@oldboyedu50~]#cd/root/data[root@oldboyedu
分类:
系统相关 时间:
2018-07-16 12:23:37
阅读次数:
176
mv 移动文件或者目录 格式:mv [选项] 源文件/目录 目标文件/目录 注:若移动目标位置与源位置相同(当前下操作),则此操作相当于重命名(改名) ex: [root@localhost ~]# mv text text-1 //这个就相当于在将 text 文件改名为 text -1 find ...
分类:
系统相关 时间:
2018-07-15 12:04:44
阅读次数:
207
目录/文件处理命令 mkdir dirname 创建文件夹 mkdir -p /tmp/a/b 递归创建目录 rm -rf dirname 删除目录及内部文件 -r:表示递归删除文件及文件夹;-f:表示强制删除,不提示 touch filename 创建文件 mv ins.war ins_new.w ...
分类:
系统相关 时间:
2018-07-14 16:39:02
阅读次数:
184
1.1 移动文件 将/data目录移动到/root下 涉及命令mv 1.2 备份文件 备份oldboy.txt 涉及命令cp 1.3 改名 将oldboy.txt 修改成oldgirl.txt 1.4 删除文件 删除oldgirl.txt 涉及命令 rm 参数 -f 强制删除不提示 1.5 删除目录 ...
分类:
系统相关 时间:
2018-07-14 16:23:26
阅读次数:
189
配置zookeeper 下载zookeeper tar包 解压:tar -zxvf zookeeper-3.4.10.tar.gz -C /root/training/ 配置 cd /root/training/zookeeper-3.4.10/conf mv zoo_sample.cfg zoo. ...
分类:
其他好文 时间:
2018-07-14 00:49:30
阅读次数:
264
早上一来,jira点击任何页面都会报错,首先查看服务器的日志 然后服务器首先看了磁盘,果不其然,是根目录的磁盘满了, 然后就一层一层找占用最大的文件 命令: cd /usr du -sh * 找到了文件,原来是confluence的数据备份文件放在了/usr/local下,一下占用40g,然后mv到 ...
分类:
其他好文 时间:
2018-07-13 18:58:59
阅读次数:
124