1
0
Fork 0

Remove useless quotes

This commit is contained in:
tastytea 2022-05-15 12:00:34 +02:00
parent 7799a7191f
commit 647d24ae69
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 4 additions and 4 deletions

View File

@ -5,8 +5,8 @@ setopt LOCAL_OPTIONS ERR_RETURN NO_UNSET PIPE_FAIL
autoload -U die
[[ ${ARGC} -ne 2 ]] && die 1 "Usage: ${0} <old> <new>"
local old="${1}"
local new="${2}"
[[ ${ARGC} -ne 2 ]] && die 1 "usage: ${0} <old> <new>"
local old=${1}
local new=${2}
btrfs send --no-data -p "${old}" "${new}" | btrfs receive --dump
btrfs send --no-data -p ${old} ${new} | btrfs receive --dump