Linux01

来源:互联网 发布:游戏画面 知乎 编辑:程序博客网 时间:2024/05/24 02:13
rm -rf *
mkdir -p /a/b //创建级联目录
cp test test1/test -r //递归拷贝
mv a.txt text/aa.txt //移动命名


echo hello >a.php
more a.php


echo world >>a.php 追加
more a.php


cp /etc/passwd . //复制到当前路径
more /etc/passwd >> ./passwd  //追加几倍
more passwd {Ctrl+B,Ctrl+F} //查看移动


tar cvf t.tar *.php //加压
tar xvf t.tar //减压


find . -name "*.txt"//当前目录查找


find . -name "*.php" |xargs grep test


vi中常用


h 左移一个字符
l 右移一个字符


H 本屏首行
L 本屏尾行


w 移动到下一个单词
e 本单词尾
b 本单词首
  
$ 行尾
0 行首
j 下一行
k 上一行


G 文章尾
1G 文章头
set number
set nonumber





原创粉丝点击