Remove useless quotes
This commit is contained in:
parent
7799a7191f
commit
647d24ae69
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user