Zip and unzip with command using terminal

There are various package that does this job but we will talk about `tar` that simply zip and uzip files and folders. This small article will show you how to zip and unzip with command using terminal. To zip files tar -czvf zip_file_name.tar.gz -C ./dist...
Read More ⟶

Upload files into AWS EC2 using aws cli

We all have heard about codepipeline which simply triggered by a source commit and start a pipeline to build application then deploy automatically to ec2 servers. Upload files to aws ec2. Well this article is not about code pipeline but a simple script that will make...
Read More ⟶

Kill any running port linux and mac

First of all, we need to find out the process id also known as PID of the running process on a specific port. For example, a process is running on port 3000. To find its process id, execute: lsof -t -i:4200 63562 Now you have the PID '63562' of the process...
Read More ⟶