https://www.geeksforgeeks.org/find-command-in-linux-with-examples/
find ./GFG -name sample.txt
https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB0383441
docker cp <src-path> <container>:<dest-path>
kubectl cp <src-path> <your-pod-name>:<dest-path>
kubectl cp /data/ids_runtime_docker/DB_Script/IDS_Extraction_Application_Form_CS.tar mongodb-0:/tmp
https://zoomadmin.com/HowToInstall/UbuntuPackage/less
sudo apt-get install -y less
https://kubernetes.io/docs/reference/kubectl/cheatsheet/
kubectl logs my-pod -f
The commands we shall cover pertaining to this topic are:
https://www.tecmint.com/increase-ssh-connection-timeout/
/etc/ssh/sshd_config
ClientAliveInterval 1200 ClientAliveCountMax 3
The timeout value is given by the product of the above parameters i.e.
Timeout value = ClientAliveInterval * ClientAliveCountMax
For example, let’s say you have defined your parameters as shown:
ClientAliveInterval 1200 ClientAliveCountMax 3
https://learn.microsoft.com/en-us/azure/devops/pipelines/process/approvals?view=azure-devops&tabs=check-pass