linux中截取字符串cut命令用法简介:
语法:cut -cnum1-num2 fileName
使用权限:所有使用者
说明:显示每行从开头算起 num1 到 num2 的文字。
例子:
shell>> cat fileName
test2
this is a test content
shell>> cut -c1-6 fileName ## print 开头算起前 6 个字元
test2
this i
-c m-n 表示显示每一行的第m个字元到第n个字元。例如:
liubi 23 140004
# cut -c 1-5,10-14 file
liubi
-f m-n 表示显示第m栏到第n栏(使用tab分隔)。例如:
liubi 23 14000
# cut -f 1,3 file
liubi 14000
-c 和 -f 参数可以跟以下子参数:
m 第m个字符或字段
m- 从第m个字符或字段到文件结束
-n 从第1个到第n个字符或字段
m-n 从第m个到第n个字符或字段
我们经常会遇到需要取出分字段的文件的某些特定字段,例如 /etc/password就是通过":"分隔各个字段的。可以通过cut命令来实现。例如,我们希望将系统账号名保存到特定的文件,就可以:
cut -d: -f 1 /etc/passwd > /tmp/users
-d用来定义分隔符,默认为tab键,-f表示需要取得哪个字段
如:
使用|分隔
cut -d’|’ -st&st
使用:分隔
cut -d’:’ -st&st
这里使用单引号或双引号都行。
/var/tmp/easypbx/
|-- etc
| `-- asterisk
|-- usr
| |-- include
| | |-- asterisk
| | | |-- _private.h
| | | |-- abstract_jb.h
| | | |-- acl.h
| | | |-- adsi.h
| | | |-- ael_structs.h
| | | |-- agi.h
| | | |-- alaw.h
| | | |-- aoc.h
| | | |-- app.h
| | | |-- ast_expr.h
| | | |-- ast_version.h
| | | |-- astdb.h
| | | |-- astmm.h
| | | |-- astobj.h
| | | |-- astobj2.h
| | | |-- astosp.h
| | | |-- audiohook.h
| | | |-- autochan.h
| | | |-- autoconfig.h
| | | |-- bridging.h
| | | |-- bridging_features.h
| | | |-- bridging_technology.h
| | | |-- build.h
| | | |-- buildinfo.h
| | | |-- buildopts.h
| | | |-- calendar.h
| | | |-- callerid.h
| | | |-- causes.h
| | | |-- ccss.h
| | | |-- cdr.h
| | | |-- cel.h
| | | |-- celt.h
| | | |-- channel.h
| | | |-- channelstate.h
| | | |-- chanvars.h
| | | |-- cli.h
| | | |-- compat.h
| | | |-- compiler.h
| | | |-- config.h
| | | |-- crypto.h
| | | |-- data.h
| | | |-- datastore.h
| | | |-- devicestate.h
| | | |-- dial.h
| | | |-- dlinkedlists.h
| | | |-- dns.h
| | | |-- dnsmgr.h
| | | |-- doxygen
| | | | |-- architecture.h
| | | | |-- asterisk-git-howto.h
| | | | |-- commits.h
| | | | |-- licensing.h
| | | | |-- mantisworkflow.h
| | | | |-- releases.h
| | | | `-- reviewboard.h
| | | |-- doxyref.h
| | | |-- dsp.h
| | | |-- dundi.h
| | | |-- endian.h
conf| | | |-- enum.h
| | | |-- event.h
| | | |-- event_defs.h
| | | |-- extconf.h
| | | |-- features.h
| | | |-- file.h
| | | |-- format.h
| | | |-- format_cap.h
| | | |-- format_pref.h
| | | |-- frame.h
| | | |-- frame_defs.h
| | | |-- framehook.h
| | | |-- fskmodem.h
| | | |-- fskmodem_float.h
| | | |-- fskmodem_int.h
| | | |-- global_datastores.h
| | | |-- hashtab.h
| | | |-- heap.h
| | | |-- http.h
| | | |-- image.h
| | | |-- indications.h
| | | |-- inline_api.h
| | | |-- io.h
| | | |-- jabber.h
| | | |-- jingle.h
| | | |-- linkedlists.h
| | | |-- localtime.h
| | | |-- lock.h
| | | |-- logger.h
| | | |-- manager.h
| | | |-- md5.h
| | | |-- message.h
| | | |-- mod_format.h
| | | |-- module.h
| | | |-- monitor.h
| | | |-- musiconhold.h
| | | |-- netsock.h
| | | |-- netsock2.h
| | | |-- network.h
| | | |-- optional_api.h
| | | |-- options.h
| | | |-- paths.h
| | | |-- pbx.h
| | | |-- pktccops.h
| | | |-- plc.h
| | | |-- poll-compat.h
| | | |-- privacy.h
| | | |-- pval.h
| | | |-- res_fax.h
| | | |-- res_odbc.h
| | | |-- res_srtp.h
| | | |-- rtp_engine.h
| | | |-- say.h
| | | |-- sched.h
| | | |-- security_events.h
| | | |-- security_events_defs.h
| | | |-- select.h
| | | |-- sha1.h
| | | |-- silk.h
| | | |-- slin.h
| | | |-- slinfactory.h
| | | |-- smdi.h
| | | |-- speech.h
| | | |-- srv.h
| | | |-- stringfields.h
| | | |-- strings.h
| | | |-- stun.h
| | | |-- syslog.h
| | | |-- taskprocessor.h
| | | |-- tcptls.h
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论