How to install skype in Ubuntu 16.04 & Ubuntu 18.04 Md. Shahzad Alam - 23:30 0 Edit Download skype debian package from Skype website URL - https://www.skype.com/en/get-skype/ Go to download location of skype setup $ cd...
find command delete files older than x days Md. Shahzad Alam - 23:16 0 Edit Find command delete specific files older than 7 days in linux /usr/bin/find /var/www/html/uploads -name "*.pdf" -type f -mtime +...
sed command replace string in file Md. Shahzad Alam - 12:46 0 Edit sed command replace http to https url in file sed -i 's|http://abc.com|https://abc.com|g' filename Sed command replace string i...
Get s3 bucket size from terminal Md. Shahzad Alam - 21:27 0 Edit Get s3 bucket size from cli aws s3 ls --summarize --human-readable --recursive s3://bucketname | grep "Total Size:" | cut -d...
How to check any server port using shell script until its start Md. Shahzad Alam - 19:10 0 Edit How to check any server port using shell script until its start or, Check to Wait for a new port establish connection using shell script ...