pip install pandas numpy matplotlib seaborn jupyter sqlalchemy pymysql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
network: | |
ethernets: | |
ens3: | |
addresses: | |
- 10.0.0.5/24 | |
routes: | |
- to: default | |
via: 10.0.0.1 | |
nameservers: | |
addresses: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Array of target directories to backup | |
TARGETS=("/path/to/first_folder" "/path/to/second_folder" "/path/to/third_folder") | |
# Destination directory to store the backup | |
DESTINATION="/path/to/backup_folder" | |
# Retention period in days | |
RETENTION_DAYS=7 |
OlderNewer