2022-03-14 19:45:28 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# The purpose of this script is to zip a Firefox profile and stash it to a save location.
|
|
|
|
|
|
|
|
source "$(dirname "$0")/variables.conf"
|
|
|
|
|
|
|
|
# Remove old archive
|
2022-03-14 20:06:37 +01:00
|
|
|
rm $save_path/$file_name
|
2022-03-14 19:45:28 +01:00
|
|
|
|
|
|
|
# Save profile
|
2022-03-14 20:06:37 +01:00
|
|
|
7z a $save_path/$file_name $firefox_data_path/$profile_name
|
2022-03-14 19:45:28 +01:00
|
|
|
|
|
|
|
exit 0
|