Search Results

Showing results for "linux"

Latest Articles

Cover Image for Recursively counting files in a Linux directory

Recursively counting files in a Linux directory

Published on September 2, 2023

📝 Hey there fellow tech enthusiasts! 💻 Are you scratching your head 🤔 trying to figure out how to recursively count files in a Linux directory? Well, fret not, because I've got your back! 🤝 In this blog post, I'll guide you through some handy solutions

Cover Image for How to kill a process running on particular port in Linux?

How to kill a process running on particular port in Linux?

Published on September 2, 2023

# How to Kill a Process Running on a Particular Port in Linux? So, you've encountered a common problem - your Tomcat server didn't shut down properly, and now you're unable to restart it because the process is still running on port 8080. Don't worry, we'v

Cover Image for How can I use grep to show just filenames on Linux?

How can I use grep to show just filenames on Linux?

Published on September 2, 2023

--- # How to Use `grep` to Show Just Filenames on Linux 😃💻 Are you tired of sorting through a long list of grep results, trying to find the specific filenames you're looking for? Look no further! In this guide, we'll show you how to use `grep` to only d

Cover Image for How do I prompt for Yes/No/Cancel input in a Linux shell script?
shell

How do I prompt for Yes/No/Cancel input in a Linux shell script?

Published on September 2, 2023

## How to Prompt for Yes/No/Cancel Input in a Linux Shell Script 🤔💻 Have you ever found yourself needing to ask the user for a simple yes, no, or cancel input in a Linux shell script? It's a common situation when you want to create an interactive script

Cover Image for How can I symlink a file in Linux?

How can I symlink a file in Linux?

Published on September 2, 2023

title: Symlinking Files in Linux Made Easy! 📂💻 Hey there Linux enthusiasts! 👋 So, you want to learn how to symlink a file in Linux, huh? Well, you've come to the right place! In this exciting blog post, we'll walk you through the process step by step

Cover Image for How to change the output color of echo in Linux
command-line

How to change the output color of echo in Linux

Published on September 2, 2023

🌈💻 **How to Change the Output Color of Echo in Linux** 💡🐧 Hey there, fellow tech enthusiasts! 👋 Are you tired of the boring black and white output when using the echo command in Linux? 🙄 Well, fret no more because I've got you covered! In this guide

Cover Image for How to find all files containing specific text (string) on Linux?
directory

How to find all files containing specific text (string) on Linux?

Published on September 2, 2023

# How to Find All Files Containing Specific Text on Linux 😃🐧 So, you're on a quest to find all those elusive files on your Linux system containing that specific text you've been looking for? Well, fret not, for I am here to guide you on this epic search

Cover Image for How can I activate a virtualenv in Linux?
pythonpython-3.xpython-venvvirtualenv

How can I activate a virtualenv in Linux?

Published on September 2, 2023

# How to Activate a Virtualenv in Linux 🐧 So, you're trying to activate a virtualenv in Linux, huh? And it seems like you've hit a roadblock. Fret not! We're here to help you overcome this hurdle and get your virtualenv up and running in no time. 🚀 ##

Cover Image for Starting iPhone app development in Linux?

Starting iPhone app development in Linux?

Published on September 2, 2023

📱😍 Starting iPhone App Development in Linux: Yes, You Can! 🐧🚀 Hey there, tech enthusiasts! 👋 Are you ready to dive into the exciting world of iPhone app development? 📲💻 But wait, aren't Macs the only option for iOS development? 🍎 Is it possible to

Cover Image for How do the likely/unlikely macros in the Linux kernel work and what is their benefit?
branch-predictionc#gcc

How do the likely/unlikely macros in the Linux kernel work and what is their benefit?

Published on September 2, 2023

# How do the `likely`/`unlikely` macros in the Linux kernel work and what is their benefit? If you've been delving into the Linux kernel recently, you may have come across some intriguing calls like these: ```c if (unlikely(fd < 0)) { /* Do something