Category: bash script
Killing a process that opens a TCP port can be necessary in various situations, such as when you want to stop a misbehaving or unwanted application or service. Here …
How to Check if a Domain can be Ping-able? Creating a bash script to check if a domain is reachable via ping can be very useful for basic network …
Kubernetes, a powerful and flexible platform for managing containerized workloads and services, offers a host of commands for querying and manipulating clusters. Bash Function to Show Logs and Describe …
With the Crypto Price Lookup API and the JSON jq tool, we can make a simple bash script to query crypto prices such as bitcoins, TRON, steem: #!/bin/bash # …
The parameters can be passed as command line to the shell scripts as $1, $2 etc. However, if there are many parameters, passing via command line is not ideal …