From c5e2077efc8e509d8fbf60c1a2f05f20a0e914a3 Mon Sep 17 00:00:00 2001 From: c0ffeeca7 <38767475+c0ffeeca7@users.noreply.github.com> Date: Tue, 5 Mar 2024 15:35:04 +0100 Subject: [PATCH] Remove start of command symbol in shell script (#31748) --- source/_integrations/backup.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_integrations/backup.markdown b/source/_integrations/backup.markdown index d0c90039f82..95e302d9939 100644 --- a/source/_integrations/backup.markdown +++ b/source/_integrations/backup.markdown @@ -82,5 +82,5 @@ Backups created via the **Backup** integration are located in your `/config/back For Container and Core installations, there is currently no built-in way to restore a backup. However, a Home Assistant backup is just a tar file of the `/config` directory, plus some metadata. To manually restore a backup, you can use the following: ```shell -$ tar -xOf "./homeassistant.tar.gz" | tar --strip-components=1 -zxf - -C +tar -xOf "./homeassistant.tar.gz" | tar --strip-components=1 -zxf - -C ```