Breathe CLI – Paced resonance breathing in the macOS terminal
https://github.com/marekkowalczyk/breathe-cli
#HackerNews #BreatheCLI #PacedBreathing #macOSTerminal #HealthTech #MeditationTool
Breathe CLI – Paced resonance breathing in the macOS terminal
https://github.com/marekkowalczyk/breathe-cli
#HackerNews #BreatheCLI #PacedBreathing #macOSTerminal #HealthTech #MeditationTool
🐧💻 Ready to master your Linux and MacOS environments? Here's a comprehensive overview of essential UNIX commands, complete with a video demo and practical exercises. Whether you're a beginner or looking to refine your skills, this guide will empower you to navigate like a pro. Unlock the power of the command line today! 🚀📂
https://negativepid.blog/a-quick-start-guide-to-unix-commands/
#UNIX #commandLine #UnixCommands #Linux #Terminal #LinuxCommands #MacOSTerminal
Today I needed to use the ‘find’ command on /tmp, from outside /tmp:
find /tmp -name “foobar*”
It failed, even though I know there are lots of ‘foobar’ files there. A quick web browse found the answer: Because the /tmp dir is a link to another dir (/private/tmp), you have to “search different.” From the linked page, I used:
find -H /tmp -name “foobar*”
And that worked as expected. There are a few other options listed on the page.