shlogg · Early preview
Manish Chaudhary @cmanish049

Software Developer from Nepal

Linux File Search Commands: Grep, Locate, Tail And Ls

Search file: cat filename | grep keyword. View last lines: tail -f filename or tail -100 filename. Locate file: locate filename. Supervisor status: supervisorctl status.

Sending Test Emails With Python's Smtplib Module

Sending emails with Python: Use smtplib to send HTML emails via SMTP servers. Define a function `send_email` to construct and send email messages.