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