Tag: Command

How To Activate Windows 10 Using Command Prompt (cmd)

Three Easy Steps, which only take one minute. Status: Still working! Why Would People Need To Activate Windows? Well, there are many reasons. It could be because a school or a business is setting up an organization of computers and wants them registered under one key for uniformity. An...

Man Pages — The Complete Guide

If you use the command line in UNIX-like systems, you probably know the man command. It’s a powerful tool for finding documentation for any program or library. But do you know where “man pages” come from, how they are structured, tips and tricks to read them better, an...

Create Your First Swift Package Command Plugin

This year, Apple released a new feature for the Swift Package Manager: Swift Package Plugins. We can now write two kinds of plugins that are automatically integrated with Xcode: Build (and pre-build) Plugins. Command Plugins. I already talked about building plugins in a couple of articl...

Learning to Manipulate YAML on the Command Line with YQ

You are probably familiar with “jq”. Every developer or DevOps must have handled JSON data. “jq” is a lightweight and flexible command-line JSON processor akin to sed, awk, and grep. Those linux commands like sed, awk, and grep are awesome tools, but when you are working on f...

Linux command: PS (Process Status)

If we pass arguments with a (-) dash then we will get the output in standard syntax. In contrast, if we pass arguments without any (-) dash then we will get output in BSD (Berkeley Software Distribution) syntax. To view all running processes : ps -e or ps -A ...

How to Mirror A Disk into Another Disk by using RoboCopy command of Windows

/MIR: This option mirrors the source directory and the destination directory. It will make the destination directory identical to the source by copying all folders (including empty ones) from the source directory and by deleting folders in the destination that are not present in the source. /XO: ...

A short tutorial on tmux command

Processing LLM on a huge corpus of documents takes a couple of hours. I would find it cumbersome to be waiting for the processing to complete. A few weeks back my colleague came to my rescue and showed me the tmux command. While I don’t suggest that you ABSOLUTELY need to learn it, but strongl...