diff options
author | listout <listout@protonmail.com> | 2021-05-15 22:09:38 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2021-05-15 22:09:38 +0530 |
commit | c11e1735842bd4add1485521bd054e7f842e79e1 (patch) | |
tree | 06190fdfd29caa0203947375e188b7dcfdd2b221 /.local | |
parent | 057ad82849d044f9f0b9e1b66745a768b61c9a20 (diff) |
script for sync firefox profile on ram
Diffstat (limited to '.local')
-rwxr-xr-x | .local/bin/ff_profile_sync | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.local/bin/ff_profile_sync b/.local/bin/ff_profile_sync new file mode 100755 index 0000000..c74b175 --- /dev/null +++ b/.local/bin/ff_profile_sync @@ -0,0 +1,7 @@ +#!/bin/sh +cd /home/gogo/.mozilla/firefox/ +if test -d /home/gogo/.mozilla/firefox/1boids0p.default-release;then +if test -d /home/gogo/.mozilla/firefox/1boids0p.default-release.bac;then +rsync -a --delete /home/gogo/.mozilla/firefox/1boids0p.default-release/ \ + /home/gogo/.mozilla/firefox/1boids0p.default-release.bac/ +fi;fi |