mirror of
https://github.com/glfs-book/glfs.git
synced 2025-07-23 04:48:52 +00:00
7 lines
254 B
Bash
7 lines
254 B
Bash
#!/bin/sh
|
|
bs_version=$(cat NVIDIA-sysv-bootscripts/version)
|
|
cp -vR NVIDIA-sysv-bootscripts{,-$bs_version}
|
|
tar -cJvf ./NVIDIA-sysv-bootscripts-$bs_version.tar.xz \
|
|
NVIDIA-sysv-bootscripts-$bs_version
|
|
rm -rf NVIDIA-sysv-bootscripts-$bs_version
|