2019-04-11 11:19:06 +08:00
|
|
|
|
[#]: collector: (lujun9972)
|
|
|
|
|
[#]: translator: (MjSeven)
|
2019-04-15 10:57:19 +08:00
|
|
|
|
[#]: reviewer: (wxy)
|
2019-04-15 10:57:53 +08:00
|
|
|
|
[#]: publisher: (wxy)
|
|
|
|
|
[#]: url: (https://linux.cn/article-10725-1.html)
|
2019-04-11 11:19:06 +08:00
|
|
|
|
[#]: subject: (Bash vs. Python: Which language should you use?)
|
|
|
|
|
[#]: via: (https://opensource.com/article/19/4/bash-vs-python)
|
|
|
|
|
[#]: author: (Archit Modi Red Hat https://opensource.com/users/architmodi/users/greg-p/users/oz123)
|
|
|
|
|
|
2019-04-15 12:57:35 +08:00
|
|
|
|
Bash vs Python:你该使用哪个?
|
2019-04-11 11:19:06 +08:00
|
|
|
|
======
|
2019-04-15 10:57:19 +08:00
|
|
|
|
|
|
|
|
|
> 两种编程语言都各有优缺点,它们在某些任务方面互有胜负。
|
|
|
|
|
|
2019-04-11 11:19:06 +08:00
|
|
|
|
![][1]
|
|
|
|
|
|
2019-04-15 10:57:19 +08:00
|
|
|
|
[Bash][2] 和 [Python][3] 是大多数自动化工程师最喜欢的编程语言。它们都各有优缺点,有时很难选择应该使用哪一个。所以,最诚实的答案是:这取决于任务、范围、背景和任务的复杂性。
|
2019-04-11 11:19:06 +08:00
|
|
|
|
|
|
|
|
|
让我们来比较一下这两种语言,以便更好地理解它们各自的优点。
|
|
|
|
|
|
|
|
|
|
### Bash
|
|
|
|
|
|
|
|
|
|
* 是一种 Linux/Unix shell 命令语言
|
2019-04-15 10:57:19 +08:00
|
|
|
|
* 非常适合编写使用命令行界面(CLI)实用程序的 shell 脚本,利用一个命令的输出传递给另一个命令(管道),以及执行简单的任务(可以多达 100 行代码)
|
2019-04-11 11:19:06 +08:00
|
|
|
|
* 可以按原样使用命令行命令和实用程序
|
2019-04-15 10:57:19 +08:00
|
|
|
|
* 启动时间比 Python 快,但执行时性能差
|
|
|
|
|
* Windows 中默认没有安装。你的脚本可能不会兼容多个操作系统,但是 Bash 是大多数 Linux/Unix 系统的默认 shell
|
|
|
|
|
* 与其它 shell (如 csh、zsh、fish) *不* 完全兼容。
|
|
|
|
|
* 通过管道(`|`)传递 CLI 实用程序如 `sed`、`awk`、`grep` 等会降低其性能
|
|
|
|
|
* 缺少很多函数、对象、数据结构和多线程支持,这限制了它在复杂脚本或编程中的使用
|
2019-04-11 11:19:06 +08:00
|
|
|
|
* 缺少良好的调试工具和实用程序
|
|
|
|
|
|
|
|
|
|
### Python
|
|
|
|
|
|
|
|
|
|
* 是一种面对对象编程语言(OOP),因此它比 Bash 更加通用
|
|
|
|
|
* 几乎可以用于任何任务
|
2019-04-15 10:57:19 +08:00
|
|
|
|
* 适用于大多数操作系统,默认情况下它在大多数 Unix/Linux 系统中都有安装
|
2019-04-11 11:19:06 +08:00
|
|
|
|
* 与伪代码非常相似
|
|
|
|
|
* 具有简单、清晰、易于学习和阅读的语法
|
|
|
|
|
* 拥有大量的库、文档以及一个活跃的社区
|
|
|
|
|
* 提供比 Bash 更友好的错误处理特性
|
2019-04-15 10:57:19 +08:00
|
|
|
|
* 有比 Bash 更好的调试工具和实用程序,这使得它在开发涉及到很多行代码的复杂软件应用程序时是一种很棒的语言
|
2019-04-11 11:19:06 +08:00
|
|
|
|
* 应用程序(或脚本)可能包含许多第三方依赖项,这些依赖项必须在执行前安装
|
|
|
|
|
* 对于简单任务,需要编写比 Bash 更多的代码
|
|
|
|
|
|
|
|
|
|
我希望这些列表能够让你更好地了解该使用哪种语言以及在何时使用它。
|
|
|
|
|
|
|
|
|
|
你在日常工作中更多会使用哪种语言,Bash 还是 Python?请在评论中分享。
|
|
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
via: https://opensource.com/article/19/4/bash-vs-python
|
|
|
|
|
|
|
|
|
|
作者:[Archit Modi (Red Hat)][a]
|
|
|
|
|
选题:[lujun9972][b]
|
|
|
|
|
译者:[MjSeven](https://github.com/MjSeven)
|
2019-04-15 10:57:19 +08:00
|
|
|
|
校对:[wxy](https://github.com/wxy)
|
2019-04-11 11:19:06 +08:00
|
|
|
|
|
|
|
|
|
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
|
|
|
|
|
|
|
|
|
[a]: https://opensource.com/users/architmodi/users/greg-p/users/oz123
|
|
|
|
|
[b]: https://github.com/lujun9972
|
|
|
|
|
[1]: https://opensource.com/sites/default/files/styles/image-full-size/public/lead-images/computer_happy_sad_developer_programming.png?itok=72nkfSQ_
|
|
|
|
|
[2]: /article/18/7/admin-guide-bash
|
|
|
|
|
[3]: /article/17/11/5-approaches-learning-python
|