© 2023 Hashnode
#shell
What are Shell Scripts? A shell script is a program written in the shell programming language, typically to automate tasks that are performed frequently or repetitively. They are executed by a shell, …
In this guide, we will delve into the essential commands and techniques for navigating terminal environments. You will learn how to create directories, files, and add text to them using your terminal. The goal is to provide you with a compr…
While I ran these commands in macOS using iterm2, the tricks are valid for most of the terminals out there. Quick side note: My username is rishirajpurohit but it will be your username for the below e…
Setup your fancy terminal Using your shell with Oh My Zsh and Starship on macOS Some use fish shell as it is an interactive, user-friendly, and modern shell. But it does not have POSIX sh compatibilit…
Atualmente tenho passado boa parte do meu tempo no computador em linhas de comando (shells do Linux) como zsh e bash. Acho a linha de comando uma excelente ferramenta de produtividade e automação de t…
Hey you, future SWE (if you aren't already) welcome back to another article. In this one, I will be detailing my experience of the induction period and what you may expect (or not- some things may loo…
Do you want to take control of your computer and unleash its full potential? The command line may be the answer you're looking for. In this article, we will go through a beginner's guide to the comman…
What does a VPN do? "Typically, when you try to access a website, your ISP (Internet Service Provider) receives the request and redirects you to your destination. But when you connect to a VPN, it red…
chmod 🔐 Modifies file/directory permissions (See here or here for more details). Permission expressions are mostly formatted as [ugoa][+-=][rwx]: SymbolMeaning rRead wWrite xExecute Sy…
1. Write a bash script to create directories. so that when the script is executed with three given arguments (one is the directory name and second is the start number of directories and the third is t…