TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Use of Make outside of software build automation?

5 点作者 lildata将近 4 年前
I recently rediscovered the joy & simplicity of make. I also started using it to sort & automate a lot of various daily tasks (adding todos, sending notifications, cleaning files, updates, backups, etc.) Do you also leverage make for those types of use cases? or found better tools to do this?

3 条评论

tacostakohashi将近 4 年前
I&#x27;ve used make a lot over the years for automation of tasks like fetching lots of large remote files and converting between formats (compressing &#x2F; uncompressing, image file format conversion).<p>Any time you have a task with lots of smaller steps that takes several minutes or more to complete from end to end, getting built-in parallelization (-j), error handling, and resuming efficiently from a partially complete state for free with make becomes worthwhile.
PaulHoule将近 4 年前
There is a range of ‘logic programming’ and ‘production rules’ tools such as Prolog, Drools, and Clara that can implement Make-like control flow.
monkeybutton将近 4 年前
I&#x27;ve heard of one instance where a company started down the path of creating a DSL and implementing a rules engine for their task to realizing they could skip all of that work and just use make instead.