linux命令
2024-08-05 09:52:39 阅读次数:19
linux,服务器
1,ps aux | grep "tomcat" 查找运行的进程
2,find / -name java* 全部查找(java*)文件
3,cat -n name-file | grep "java" 查找文件(java)所在行
4,cat -n name-file | tail -n +92 | head -n 20 查看文件92行前后20行
5 :set nu 显示行号
6,:行号 跳转到指定行号
7,tail -n 20 filename 显示后20行数据
8,sudo -u bsafe bash 切换basfe帐户
9,cat textJson_20190216.log | awk -F '\t' '{print $NF}' > result.log 去除文件中字符"\t"
方法二:#awk -F "\t" '{print $2}' ./textJson_20190215.log >result.log
10,cat file1 file2 | sort | uniq > fileAll 取出文件的并集(去重)
11,远程复制拷贝
$scp local_file remote_username@remote_ip:remote_folder
$scp local_file remote_username@remote_ip:remote_file
$scp local_file remote_ip:remote_folder
$scp local_file remote_ip:remote_file
scp root@127.0.0.1:/opt/soft/nginx-0.5.38.tar.gz /opt/soft/
12,字符串切割
awk '{FS=":"}{print $1"\t" $3}' /etc/passwd,使用FS=””,指定分割符,第一行已经读完,用冒号分割已经来不及了,默认的用空格分割,后面的用冒号分割,在FS之前强制加个BEGIN
***********awk -F '\t' '{print $3}'**********
13,删除指定行 sed -i '1d' <file>
14,删除包含特定字符的行 sed -e '/xxx/d' a1.txt > a2.txt
15,文件授权(递归授权所有文件) chown -R testname <filename>
16,压缩 压缩方式:
tar -zcvf archive_name.tar.gz filename
解压缩方式:
tar -zxvf archive_name.tar.gz
压缩解压(zip)
zip -r 123.zip 123.txt
unzip 123.zip -d ./
17,nohup
nohup /usr/local/node/bin/node /www/im/chat.js >> /usr/local/node/output.log 2>&1 &
18,hadoop执行指令
hadoop jar /usr/bin/hadoop/software/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-examples-2.7.2.4.jar wordcount /home/testWord /home/output/2
19,替换文件制定字符
sed -i "s/tf_ab/tf_qw/g" result.txt
20,git命令
git status
git add .
git commit -m "一些信息"
git push 仓库地址
###分支
git checkout -b 分支名 #新建分支
git branch -a
git checkout 分支名
21,rsync -av ../log/textJson_$min".log" --port=9215 root@127.0.0.1::web_news_database
版权声明:本文内容来自第三方投稿或授权转载,原文地址:https://blog.51cto.com/wangshiyu/2932804,作者:JavaPub,版权归原作者所有。本网站转在其作品的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如因作品内容、版权等问题需要同本网站联系,请发邮件至ctyunbbs@chinatelecom.cn沟通。
上一篇:webpack的配置教程
下一篇:Linux 脚本编译安装NGINX1.8.1(附启动脚本)