What's the difference between a “script” and an “application”?

前端 未结 20 2084
南旧
南旧 2020-12-04 14:53

I\'m referring to distinctions such as in this answer:

...bash isn\'t for writing applications it\'s for, well, scripting. So sure, your application m

20条回答
  •  一个人的身影
    2020-12-04 14:58

    An application is a collection of scripts geared toward a common set of problems.

    A script is a bit of code for performing one fairly specific task.

    IMO, the difference has nothing whatsoever to do with the language that's used. It's possible to write a complex application with bash, and it's possible to write a simple script with C++.

提交回复
热议问题