This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Script to remove the write protection from all worksheets | |
# in an excel `.xlsx` file. | |
# | |
# DISCLAIMER: I tested this script with a single file on an arch linux system. The | |
# type of the file before and after editing is 'Microsoft Excel 2007+'. Check this | |
# first with `file table.xlsx`! | |
# | |
# The process of removing the write protection is really simple and looks like the following: |