Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kaz-utashiro/greple-msdoc
Greple module for access MS office documents
https://github.com/kaz-utashiro/greple-msdoc
Last synced: 2 months ago
JSON representation
Greple module for access MS office documents
- Host: GitHub
- URL: https://github.com/kaz-utashiro/greple-msdoc
- Owner: kaz-utashiro
- License: other
- Created: 2018-06-22T04:56:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-10-25T06:29:33.000Z (2 months ago)
- Last Synced: 2024-10-26T18:52:33.013Z (2 months ago)
- Language: Perl
- Size: 106 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
[![Actions Status](https://github.com/kaz-utashiro/greple-msdoc/workflows/test/badge.svg)](https://github.com/kaz-utashiro/greple-msdoc/actions) [![MetaCPAN Release](https://badge.fury.io/pl/App-Greple-msdoc.svg)](https://metacpan.org/release/App-Greple-msdoc)
# NAMEmsdoc - Greple module for access MS office docx/pptx/xlsx documents
# VERSION
Version 1.07
# SYNOPSIS
greple -Mmsdoc pattern example.docx
# DESCRIPTION
This module makes it possible to search string in Microsoft
docx/pptx/xlsx file.Microsoft document consists of multiple files archived in zip format.
String information is stored in "word/document.xml",
"ppt/slides/\*.xml" or "xl/sharedStrings.xml". This module extracts
these data and replaces the search target.By default, text part from XML data is extracted. This process is
done by very simple method and may include redundant information.Strings are simply connected into paragraph for _.docx_ and _.pptx_
document. For _.xlsx_ document, single space is inserted between
them. Use **--separator** option to change this behavior.After every paragraph, single newline is inserted for _.pptx_ and
_.xlsx_ file, and double newlines for _.docx_ file. Use
**--space** option to change.# OPTIONS
- **--dump**
Simply print all converted data. Additional pattern can be specified,
and they will be highlighted inside whole text.$ greple -Mmsdoc --dump -e foo -e bar buz.docx
- **--space**=_n_
Specify number of newlines inserted after every paragraph. Any
non-negative integer is allowed including zero.- **--separator**=_string_
Specify the separator string placed between each component strings.
- **--indent**
Extract indented XML document, not a plain text.
- **--indent-fold**
Indent and fold long lines.
This option requires [ansicolumn(1)](http://man.he.net/man1/ansicolumn) command installed.- **--indent-mark**=_string_
Set indentation string. Default is `| `.
# INSTALL
## CPANMINUS
cpanm App::Greple::msdoc
# SEE ALSO
[App::Greple](https://metacpan.org/pod/App%3A%3AGreple),
[https://github.com/kaz-utashiro/greple](https://github.com/kaz-utashiro/greple)[App::Greple::msdoc](https://metacpan.org/pod/App%3A%3AGreple%3A%3Amsdoc),
[https://github.com/kaz-utashiro/greple-msdoc](https://github.com/kaz-utashiro/greple-msdoc)[App::optex::textconv](https://metacpan.org/pod/App%3A%3Aoptex%3A%3Atextconv),
[https://github.com/kaz-utashiro/optex-textconv](https://github.com/kaz-utashiro/optex-textconv)[App::ansicolumn](https://metacpan.org/pod/App%3A%3Aansicolumn),
[https://qiita.com/kaz-utashiro/items/30594c16ed6d931324f9](https://qiita.com/kaz-utashiro/items/30594c16ed6d931324f9)
(in Japanese)# AUTHOR
Kazumasa Utashiro
# LICENSE
Copyright 2018-2024 Kazumasa Utashiro.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.