You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fisher/functions/__fisher_copy.fish

8 lines
178 B
Fish

function __fisher_copy -a option source target -d "cp/ln wrapper"
if test "$option" = link
ln -sfF $source $target
else
cp -f $source $target
end
end