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

跟着360架构师 学习Shell脚本编程

时间:2019-06-30 14:15:58      阅读:312      评论:0      收藏:0      [点我收藏+]

标签:shell编程   文本   处理   bre   shel   list   数据库   sel   grep   

<section>课程地址 http://icourse8.com/shelljiaobenbianc.html </section>

 

章节详情

第1章 课程介绍   

第2章 变量的高级用法   

第3章 函数的高级用法   

第4章 Shell编程中的常用工具   

第5章 文本处理三剑客之grep   

第6章 文本处理三剑客之sed   

第7章 文本处理三剑客之awk   

第8章 Shell脚本操作数据库实战   

第9章 大型脚本工具开发实战   

第10章 课程总结

 def longestCommonPrefix(self, strs):
        if not strs: return ""
        ss = list(map(set, zip(*strs)))
        res = ""
        for i, x in enumerate(ss):
            x = list(x)
            if len(x) > 1:
                break
            res = res + x[0]
        return res

 

跟着360架构师 学习Shell脚本编程

标签:shell编程   文本   处理   bre   shel   list   数据库   sel   grep   

原文地址:https://www.cnblogs.com/aiyiranzai/p/11109474.html

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