• Stars
    star
    6,927
  • Rank 5,667 (Top 0.2 %)
  • Language
    Shell
  • License
    Apache License 2.0
  • Created over 11 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

🐌 useful scripts for making developer's everyday life easier and happier, involved java, shell etc.

🐌 useful-scripts

repo-icon

Github Workflow Build Status GitHub release License GitHub Stars GitHub Forks GitHub issues GitHub Contributors GitHub repo size

🐌 useful scripts for making developer's everyday life easier and happier, involved java, shell etc.
👉 平时有用的手动操作做成脚本,以便捷地使用,让开发的日常生活更轻松些。 💕

欢迎 👏 💖

本仓库的脚本(如Java相关脚本)在阿里等公司(如随身云,见awesome-scripts仓库说明)的线上生产环境部署使用。

如果你的公司有部署使用,欢迎使用通过 Issue:who's using | 用户反馈收集 告知,方便互相交流反馈~ 💘



🔰 快速下载&使用

source <(curl -fsSL https://raw.githubusercontent.com/oldratlee/useful-scripts/release-2.x/test-cases/self-installer.sh)

更多下载&使用方式,参见下载使用

📚 使用文档

Java相关脚本

  1. show-busy-java-threads
    用于快速排查JavaCPU性能问题(top us值过高),自动查出运行的Java进程中消耗CPU多的线程,并打印出其线程栈,从而确定导致性能问题的方法调用。
  2. show-duplicate-java-classes
    找出jar文件和class目录中的重复类。用于排查Java类冲突问题。
  3. find-in-jars
    在目录下所有jar文件里,查找类或资源文件。

🐚 Shell相关脚本

Shell使用加强:

  1. c
    原样命令行输出,并拷贝标准输出到系统剪贴板,省去CTRL+C操作,优化命令行与其它应用之间的操作流。
  2. coat
    彩色cat出文件行,方便人眼区分不同的行。
  3. a2l
    按行彩色输出参数,方便人眼查看。
  4. uq
    不重排序输入完成整个输入行的去重。相比系统的uniq命令加强的是可以跨行去重,不需要排序输入。
  5. ap and rp
    批量转换文件路径为绝对路径/相对路径,会自动跟踪链接并规范化路径。
  6. cp-into-docker-run
    一个Docker使用的便利脚本。拷贝本机的执行文件到指定的docker container中并在docker container中执行。
  7. tcp-connection-state-counter
    统计各个TCP连接状态的个数。用于方便排查系统连接负荷问题。
  8. xpl and xpf
    在命令行中快速完成 在文件浏览器中 打开/选中 指定的文件或文件夹的操作,优化命令行与其它应用之间的操作流。

Shell开发/测试加强:

  1. echo-args
    输出脚本收到的参数,在控制台运行时,把参数值括起的括号显示成 红色,方便人眼查看。用于调试脚本参数输入。
  2. console-text-color-themes.sh
    显示Terminator的全部文字彩色组合的效果及其打印方式,用于开发Shell的彩色输出。
  3. parseOpts.sh
    命令行选项解析库,加强支持选项有多个值(即数组)。

VCS相关脚本

目前VCS的脚本都是svn分支相关的操作。使用更现代的Git吧! 💥

因为不推荐使用svn,这里不再列出有哪些脚本了,如果你有兴趣可以点上面链接去看。

🎓 Developer Guide

为用户提供有用的功能,当然是这个库的首要的价值体现和存在理由。

但作为一个开源项目,每个人都可以看到源码实现,这个库或许能做得更多。

🎯 面向开发者的目标

  • Shell/Bash作为线上生产环境使用的专业编程语言。
  • 期望体现Shell/Bash脚本 生产环境级的严谨开发方式与最佳实践,进而有可能示例与改善在生产环境中Shell脚本的质量状况。

PS:

  • 虽然上面是自己期望的目标,但自己在Shell语言上一定会有很多理解和使用上的问题、在这些实现脚本中也会很多需要的改进,可以一起学习、讨论与实践~ 💕
  • 这个库中脚本的实现也有使用Python

关于Shell脚本

命令行(CLI)几乎是每个程序员每天都在使用的工具。相比图形界面工具(GUI),命令行有着自己不可替代的便利性和优越性。

命令行里写出来其实就是Shell脚本,可以说每个开发者会写Shell脚本(或多或少)。在生产环境的功能实现中,也常会看到Shell脚本(虽然不如主流语言那么常见)。

可能正因为上面所说的Shell脚本的便利性和大众性:

  • Shell脚本有不少是顺手实现的(包括生产环境用的Shell脚本);
  • Shell脚本的实现常常可能质量不高,会引发线上严重的故障。

🚦 开发约定

在这个库中的Shell脚本:

  • 统一使用Bash 3+
  • 面向生产环境,尽可能使用严谨安全的开发方式。

ShellBash的原因是:

  • 目前仍然是主流的Shell,并且在不同环境基本上都缺省部署了。
  • GoogleShell风格指南中,明确说明了:Bash唯一被允许执行的shell脚本语言。
    • 有大量的Shell实现,shbashzshfishcshtcshkshashdash……
    • 不同的Shell有各种差异,深坑勿入。
    • 统一用Bash,可以避免差异带来的风险与没有收益的复杂性。
  • 个人系统学习过的是Bash,比较理解熟悉。

PS: 虽然交互Shell个人已经使用Zsh + oh-my-zsh,但在严谨的Shell脚本开发时还是使用Bash

📚 Shell学习与开发的资料

更多资料参见 子文档

More Repositories

1

translations

🐼 Chinese translations for classic IT resources
6,710
star
2

fucking-java-concurrency

🎏 Simple showcases of java concurrency problems, seeing 🙈 is believing 🐵
Java
990
star
3

vim-practice

💘 Vim is awesome! Here is my practice and study log.
Vim Script
555
star
4

reactive-practice-at-taobao

♨️ Reactive @ 淘宝 | Reactive实践、推动、落地的记录与大会分享 | Flow Arch(流式架构)/Reactive Programming(RP/反应式编程)
441
star
5

software-practice-thoughts

📚 🐣 软件实践文集。主题不限,思考讨论有趣有料就好,包含如 系统的模型分析/量化分析、开源漫游者指南、软件可靠性设计实践、平台产品的逻辑与执行… 🥤
Jupyter Notebook
200
star
6

big-data-study

🐳 big data study
147
star
7

land

🍡 Land is a simple Java™ dependency-isolation container via class loader.
Java
134
star
8

hacker-quotes

🎩 An oh-my-zsh plugin, just print a hacker quote randomly when open a terminal.
Shell
89
star
9

log4j2-ttl-thread-context-map

🌳 Log4j2 TTL ThreadContextMap, Log4j2 extension integrated TransmittableThreadLocal to MDC
Java
77
star
10

tcpip-quiz

tcp/ip quiz
63
star
11

io-api

📐 generic API design example by I/O, the demo implementation of https://dzone.com/articles/generic-inputoutput-api-java
Java
50
star
12

java-modern-tech-practice

😎 Java™ modern tech practice sandbox ⏳
Java
46
star
13

Effective-IntelliJ-IDEA

Effective IntelliJ IDEA
Java
36
star
14

statistics-from-data-to-conclusion-4e

《统计学:从数据到结论》第四版 吴喜之老师 的数据文件与代码 | The data and code files of book "statistics: from data to conclusion, 4th edition"
Jupyter Notebook
35
star
15

data-science-practice

数据科学实践 | data science practice
Jupyter Notebook
27
star
16

deep-learning-math

《深度学习的数学》的随书Excel文件
15
star
17

erlang-practice

💟 Erlang is awesome! Here is my Erlang practice and study log.
14
star
18

objc-singleton

How to implement a SAFE Objective-C Singleton
Objective-C
14
star
19

ios-study-materials

Objective C and iOS study materials
14
star
20

oldratlee

whoami / my profile
13
star
21

java-compiler-demo

Demo project of creating dynamic applications with javax.tools.JavaCompiler
Java
13
star
22

my-zsh-settings

😍 An oh-my-zsh plugin for storing my zsh utils and customization separately
Shell
9
star
23

main-runner

wrap java maven project by command line start script
Shell
8
star
24

scala-maven-template-prj

scala maven template project
Scala
7
star
25

leetcode

my submission code of LeetCode problems
Java
7
star
26

kotlin-coroutines-bottom-up

Complete runnable demo code of article "A Bottom-Up View of Kotlin Coroutines"
Kotlin
7
star
27

oldratlee.github.com

👽 my technology blog
CSS
7
star
28

awesome-command-line-env

☕ Awesome Command Line Env
5
star
29

bash-string-escape

java lib for bash string escape
Java
4
star
30

ios-push-notifications-demo

iOS Push Notifications step-by-step demo
Objective-C
4
star
31

shell-matrix

display matrix effect on console by shell
Shell
4
star
32

scala-underneath

scala underneath
Scala
3
star
33

HelloKt

HelloKt 😸, my kotlin playground 🎡
Kotlin
3
star
34

NSJSONTest

测试NSJSONSerialization中Value的类型是否和JSON中声明一致,即类型稳定性
Objective-C
3
star
35

intellij-postfix-templates

my intellij postfix templates
2
star
36

java-tips

the demo code of inner class tips and usage
Java
2
star
37

doulist-wrong-counter-analysis

计数不对的『豆瓣豆列』抓取
Jupyter Notebook
2
star
38

do-btrace

btrace start-up template project
Java
1
star
39

akka-quickstart-scala

akka-quickstart-scala
Batchfile
1
star
40

cats-playground

playground for cats (and other cool scala libs)
Scala
1
star