6 lines
149 B
Bash
Executable file
6 lines
149 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
archive_name="$(basename "${1}").tar.zstd"
|
|
tar --zstd -cvf "${archive_name}" "${@}"
|
|
echo "Archive created at: ${archive_name} "
|