TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

How to <execute high level action via CLI>

3 pointsby mrlowlevel7 months ago

1 comment

mrlowlevel7 months ago
A 15 minute side project I cooked up on a late Monday night.<p>Fun examples:<p>```<p><pre><code> howto git:(main) howto &quot;print hello world&quot; | sh hello world howto git:(main) howto &quot;rebase changes from a branch B onto main that was branched off from a branch A that has now been squashed into main&quot; git checkout B &amp;&amp; git rebase --onto main A B howto git:(main) howto &quot;update macos&quot; softwareupdate --all --install --restart howto git:(main) howto &quot;list all direct non-empty child directories in current directory, each directory on a new line with no additional details&quot; | sh target .git src </code></pre> ```