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

【LeetCode】关于shell的几个问题

时间:2017-02-19 23:31:01      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:from   shel   read   ber   numbers   cat   电话   nbsp   ash   

195. Tenth Line

输出file.txt中的第十行

答案:

# Read from the file file.txt and output the tenth line to stdout.
#!/bin/bash
sed -n 10p file.txt

193. Valid Phone Numbers

找出file.txt中符合(xxx) xxx-xxxx or xxx-xxx-xxxx格式的电话号码

答案:

1 cat file.txt | grep -Eo ^(\([0-9]{3}\) )[0-9]{3}-[0-9]{4}$|^([0-9]{3}-){2}[0-9]{4}$

 

【LeetCode】关于shell的几个问题

标签:from   shel   read   ber   numbers   cat   电话   nbsp   ash   

原文地址:http://www.cnblogs.com/fcyworld/p/6417712.html

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