unzip

unzip #

# Unzip and ask if exists
unzip dist.zip

# Update existed files and create new files.
unzip -u dist.zip

# Update existed files
unzip -f dist.zip
2024年10月23日