scp: secure copy

NAME scp -- secure copy (remote file copy program) Copy remote files to local machine: This example using admin as the admin user to login to host. This will prompt…

Convert timestamps to dates in Bash?

date -r date -r 1267619929 Current timestamp: date +"%s" Links: https://stackoverflow.com/questions/2371248/how-to-convert-timestamps-to-dates-in-bash https://linuxconfig.org/convert-timestamp-to-date

Create Folders between dates

https://askubuntu.com/questions/731721/is-there-a-way-to-create-multiple-directories-at-once-with-mkdir https://www.w3resource.com/python-exercises/date-time-exercise/python-date-time-exercise-50.php https://www.geeksforgeeks.org/make-multiple-directories-based-on-a-list-using-python/

PEMDAS

The order of operations in math class and the catchy acronym, “PEMDAS” (parenthesis, exponents, multiplication, division, addition, subtraction) to help remember!

Program Loop(s)

for i in {1..5} do echo "Welcome $i times" done https://www.codegrepper.com/code-examples/shell/for+loop+bash