Lines Matching refs:dest
1411 if [[ -f "$dest" ]]; then
1416 lcov --directory "${root}/${BUILD_DIR:?}" --capture --output-file "${dest}.new"
1417 lcov --remove "${dest}.new" -o "${dest}.new" '/usr/include/*' '/usr/lib/*'
1418 lcov --add-tracefile "${dest}" --add-tracefile "${dest}.new" -o "${dest}"
1419 rm -f "${dest}.new"
1421 lcov --directory "${root}/${BUILD_DIR:?}" --capture --output-file "${dest}"
1422 lcov --remove "${dest}" -o "${dest}" '/usr/include/*' '/usr/lib/*'
1461 cp -a "$j" "$dest"
1463 "$SYSTEMD_JOURNAL_REMOTE" -o "$dest" --getter="$JOURNALCTL -o export -D $j"
1480 setfacl -m "user:${SUDO_USER:?}:r-X" "$dest"*
1484 JOURNAL_LIST="$(ls -l "$dest"*)"
2363 local dest="${2:-$1}"
2367 [[ -e ${initdir:?}/$dest ]] && return 0
2376 [[ -d "${dest%/*}" ]] && dest="$(readlink -f "${dest%/*}")/${dest##*/}"
2377 ln -sfn -- "$(convert_abs_rel "${dest}" "${reallib}")" "${initdir}/${dest}"
2379 inst_simple "$src" "$dest"
2584 local dest file
2586 [[ "${1:?}" = '-d' ]] && dest="${2:?}" && shift 2
2590 [[ -n "$dest" ]] && inst "$file" "$dest" && return 0