preload preload preload preload

Shell Script to delete unwanted files and directories

#!/bin/bash cd /home/shahid/ # Change the dectory to the specified location monit stop all # Stop all the process rm -rf log/* # Deletes all the files inside the directory log rm -rf dump/processed/* # Deletes all the files inside the directory ...
0

ssh-keygen :: SSH Login without Password

Introduction SSH is often used to login from one system to another with Username Password. There are some cases where we want to login to other systems without spesifing username and password. By generating ssh keys we can login to the system without specifying username and password. ssh-keygen - authentication key ...
3