码迷,mamicode.com
首页 > 系统相关 > 详细

Linux Shell脚本编程--cut命令

时间:2019-07-31 01:16:43      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:game   html   bsp   脚本   com   color   shel   class   pat   

 

 

[root@www ~]# echo $PATH
/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/X11R6/bin:/usr/games
# 1 | 2       | 3   | 4       | 5            | 6            | 7


找出第五个路径
[root@www ~]# echo $PATH | cut -d : -f 5
/usr/local/bin


找出第三和第五个路径
[root@www ~]# echo $PATH | cut -d : -f 3,5
/sbin:/usr/local/bin


找出第3列到最后1列路径
[root@www ~]# echo $PATH | cut -d : -f 3-
/sbin:/usr/sbin:/usr/local/bin:/usr/X11R6/bin:/usr/games


找出第一到第三个路径
[root@www ~]# echo $PATH | cut -d : -f 1-3
/bin:/usr/bin:/sbin



找出第一到第三,还有第五个路径
[root@www ~]# echo $PATH | cut -d : -f 1-3,5
/bin:/usr/bin:/sbin:/usr/local/bin



显示/etc/passwd的用户和shell
[root@www ~]# cat /etc/passwd | cut -d : -f 1,7 
root:/bin/bash
daemon:/bin/sh
bin:/bin/sh

 

 

参考:

https://www.cnblogs.com/zwgblog/p/6006102.html

 

Linux Shell脚本编程--cut命令

标签:game   html   bsp   脚本   com   color   shel   class   pat   

原文地址:https://www.cnblogs.com/sea-stream/p/11273595.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!