Linux Shell 使用技巧

本文涉及的产品
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 高可用系列,价值2615元额度,1个月
简介:

一次创建多个目录

1
2
3
[root@localhost tmp] # mkdir -p /user/{folder1,folder2,folder3}    
[root@localhost tmp] # ls /user/     
folder1  folder2  folder3

找出根目录下最大的10个目录,并按使用空间从大到小排序

1
2
3
4
5
6
7
8
9
10
11
[root@localhost ~] # du -a ./ | sort -nr | head -n 10    
132380    ./     
132316    . /source     
69916    . /source/ZendGuard-5_5_0 . tar .gz     
18720    . /source/xunzai .com_mysql-5.0.18. tar .gz     
13732    . /source/php-5 .4.11. tar .gz     
6144    . /source/phpMyAdmin-3 .5.6-all-languages. tar .gz     
5996    . /source/httpd-2 .4.3. tar .gz     
5044    . /source/libxml2-2 .9.0. tar .gz     
1984    . /source/pcre-8 .32.zip     
1960    . /source/freetype-2 .4.10. tar .gz

查看根目录下所有以“.”开头的文件

1
2
3
4
5
6
7
8
9
10
11
12
13
[root@localhost ~] # find ./ -name ".[^.]*"    
./.bash_logout     
./.bash_profile     
./.bashrc     
./.cshrc     
./.tcshrc     
./.cache     
./.config     
./.bash_history     
./.xauth96WqtE     
./.mysql_history     
./.mysql_history.TMP     
./.viminfo

修改文件或目录的时间戳

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[root@localhost ~] # stat person.txt    
   File: ?.erson.txt?     
   Size: 74            Blocks: 8          IO Block: 4096   regular  file     
Device: 803h /2051d     Inode: 145535279   Links: 1     
Access: (0644 /-rw-r--r-- )  Uid: (    0/    root)   Gid: (    0/    root)     
Context: unconfined_u:object_r:admin_home_t:s0     
Access: 2016-04-02 05:05:10.370059171 -0700     
Modify: 2016-04-02 05:04:40.854898705 -0700     
Change: 2016-04-02 05:04:40.913901033 -0700     
Birth: -     
[root@localhost ~] # touch -t 201604052135 person.txt #格式为YYMMDDhhmm     
[root@localhost ~] # stat person.txt     
   File: ?.erson.txt?     
   Size: 74            Blocks: 8          IO Block: 4096   regular  file     
Device: 803h /2051d     Inode: 145535279   Links: 1     
Access: (0644 /-rw-r--r-- )  Uid: (    0/    root)   Gid: (    0/    root)     
Context: unconfined_u:object_r:admin_home_t:s0     
Access: 2016-04-05 21:35:00.000000000 -0700     
Modify: 2016-04-05 21:35:00.000000000 -0700     
Change: 2016-04-05 06:36:16.304945163 -0700     
Birth: -

快速备份一个文件:cp filename{,.bak}

1
2
3
4
5
[root@localhost ~] # ls    
anaconda-ks.cfg  person.txt   source     
[root@localhost ~] # cp person.txt{,.bak}     
[root@localhost ~] # ls     
anaconda-ks.cfg  person.txt  person.txt.bak   source

进程运行到后台

1
[root@localhost ~] # Ctrl + z

进程运行到前台

1
[root@localhost ~] # fg

随机产生10位字符数的十六进制数

1
2
[root@localhost ~] # openssl rand -hex 10    
c3e805e84074211cc698

将文件解压到新的目录

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[root@localhost src] # ls    
apr-1.4.6. tar .gz        libmcrypt-2.5.8. tar .gz     
apr-util-1.5.1. tar .gz   libpng-1.5.14. tar .gz     
autoconf-2.69. tar .gz    libxml2-2.9.0. tar .gz     
debug                   pcre-8.32.zip     
freetype-2.4.10. tar .gz  php-5.4.11. tar .gz     
gd-2.0.35. tar .gz        phpMyAdmin-3.5.6-all-languages. tar .gz     
httpd-2.4.3             xunzai.com_mysql-5.0.18. tar .gz     
httpd-2.4.3. tar .gz      ZendGuard-5_5_0. tar .gz     
jpegsrc.v8b. tar .gz      zlib-1.2.7. tar .gz     
kernels     
[root@localhost src] # tar zxvf apr-1.4.6.tar.gz -C /tmp/tmp/     
apr-1.4.6/     
apr-1.4.6 /shmem/     
apr-1.4.6 /shmem/win32/     
…………     
[root@localhost src] # ls /tmp/tmp/     
apr-1.4.6

将所有文件名中含有”txt”的文件移入“/tmp/tmp”目录

1
2
3
4
5
[root@localhost ~] # find -iname "*txt*" -exec mv -v {} /tmp/tmp/ \;    
?. /person .txt?.-> ?.tmp /tmp/person .txt?     
?. /person .txt.bak?.-> ?.tmp /tmp/person .txt.bak?     
[root@localhost ~] # ls /tmp/tmp/     
apr-1.4.6  person.txt  person.txt.bak

将任意一行开头为“#”的去除掉

1
2
3
4
5
6
7
8
[root@localhost ~] # cat a.txt    
This is the  file     
#This is another file     
#This is the final file     
[root@localhost ~] # sed '2s/^#//' a.txt     
This is the  file     
This is another  file     
#This is the final file










本文转自 Nico_Lv 51CTO博客,原文链接:http://blog.51cto.com/nearlv/1771641,如需转载请自行联系原作者
相关实践学习
如何在云端创建MySQL数据库
开始实验后,系统会自动创建一台自建MySQL的 源数据库 ECS 实例和一台 目标数据库 RDS。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
目录
相关文章
|
2月前
|
Shell Linux
Linux shell编程学习笔记30:打造彩色的选项菜单
Linux shell编程学习笔记30:打造彩色的选项菜单
|
25天前
|
Web App开发 网络协议 Linux
linux命令总结(centos):shell常用命令汇总,平时用不到,用到就懵逼忘了,于是专门写了这篇论文,【便持续更新】
这篇文章是关于Linux命令的总结,涵盖了从基础操作到网络配置等多个方面的命令及其使用方法。
53 1
linux命令总结(centos):shell常用命令汇总,平时用不到,用到就懵逼忘了,于是专门写了这篇论文,【便持续更新】
|
7天前
|
运维 监控 Shell
深入理解Linux系统下的Shell脚本编程
【10月更文挑战第24天】本文将深入浅出地介绍Linux系统中Shell脚本的基础知识和实用技巧,帮助读者从零开始学习编写Shell脚本。通过本文的学习,你将能够掌握Shell脚本的基本语法、变量使用、流程控制以及函数定义等核心概念,并学会如何将这些知识应用于实际问题解决中。文章还将展示几个实用的Shell脚本例子,以加深对知识点的理解和应用。无论你是运维人员还是软件开发者,这篇文章都将为你提供强大的Linux自动化工具。
|
2月前
|
Shell Linux
Linux shell编程学习笔记82:w命令——一览无余
Linux shell编程学习笔记82:w命令——一览无余
|
2月前
|
人工智能 监控 Shell
常用的 55 个 Linux Shell 脚本(包括基础案例、文件操作、实用工具、图形化、sed、gawk)
这篇文章提供了55个常用的Linux Shell脚本实例,涵盖基础案例、文件操作、实用工具、图形化界面及sed、gawk的使用。
229 2
|
29天前
|
存储 Shell Linux
【Linux】shell基础,shell脚本
Shell脚本是Linux系统管理和自动化任务的重要工具,掌握其基础及进阶用法能显著提升工作效率。从简单的命令序列到复杂的逻辑控制和功能封装,Shell脚本展现了强大的灵活性和实用性。不断实践和探索,将使您更加熟练地运用Shell脚本解决各种实际问题
20 0
|
2月前
|
Shell Linux 开发工具
linux shell 脚本调试技巧
【9月更文挑战第3天】在Linux中调试shell脚本可采用多种技巧:使用`-x`选项显示每行命令及变量扩展情况;通过`read`或`trap`设置断点;利用`echo`检查变量值,`set`显示所有变量;检查退出状态码 `$?` 进行错误处理;使用`bashdb`等调试工具实现更复杂调试功能。
|
3月前
|
JavaScript 关系型数据库 Shell
Linux shell编写技巧之随机取字符串(一)
本文介绍了Linux Shell脚本的编写技巧,包括环境配置、变量命名规则和缩进语法,并提供了一个实例练习,展示如何使用`$RANDOM`变量和`md5sum`命令来生成随机的8位字符串。
44 4
|
3月前
|
Ubuntu Linux Shell
在Linux中,如何使用shell脚本判断某个服务是否正在运行?
在Linux中,如何使用shell脚本判断某个服务是否正在运行?
|
3月前
|
Java Shell Linux
【Linux入门技巧】新员工必看:用Shell脚本轻松解析应用服务日志
关于如何使用Shell脚本来解析Linux系统中的应用服务日志,提供了脚本实现的详细步骤和技巧,以及一些Shell编程的技能扩展。
51 0
【Linux入门技巧】新员工必看:用Shell脚本轻松解析应用服务日志