tar -zcvf 打包后生成的文件名全路径 要打包的目录
例子:把/xahot文件夹打包后生成一个/home/xahot.tar.gz的文件。
tar -zcvf /home/xahot.tar.gz /xahot
zip 压缩方法: 压缩当前的文件夹 zip -r ./xahot.zip ./* -r表示递归
zip [参数] [打包后的文…
tar -zcvf /home/xahot.tar.gz /xahot tar -zcvf 打包后生成的文件名全路径 要打包的目录 例子:把/xahot文件夹打包后生成一个/home/xahot.tar.gz的文件。 zip 压缩方法:
压缩当前的文件夹 zip -r ./xahot.zip ./* -r表示递归 zip [参数] [打包后的文件…
Simply put
In MySQL, the UTF8MB4 character set is an extension of the UTF8 character set. It allows you to store and handle a wider range of Unicode characters, including emojis and characters from various scripts and languages.
The “UTF8MB4” name itse…