#!/usr/bin/env zsh # YES_ZSH # NO_BASH # NO_DASH # NO_ASH archive() { ### @- create an archive file in one of a few formats. ### borrowed from [prezto.](https://github.com/sorin-ionescu/prezto) # # Creates archive file # # Authors: # Matt Hamilton # local archive_name= path_to_archive= _gzip_bin= _bzip2_bin= _xz_bin= _zstd_bin= if (( $# < 2 )); then cat >&2 <