summaryrefslogtreecommitdiffstats
path: root/perl/perl-File-Inplace/README
diff options
context:
space:
mode:
author Nikos Giotis2018-02-11 00:30:16 +0100
committer Willy Sudiarto Raharjo2018-02-17 01:42:51 +0100
commita6f374fc33fd6c77c53227b15affab33f12a3c83 (patch)
treeac34a374d61474edc185c9cc17de5642700ed609 /perl/perl-File-Inplace/README
parentbb89d8aea1b2beb45b59f3aaf83bef3e9f2455ec (diff)
downloadslackbuilds-a6f374fc33fd6c77c53227b15affab33f12a3c83.tar.gz
perl/perl-File-Inplace: Added (in-place editing of files).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'perl/perl-File-Inplace/README')
-rw-r--r--perl/perl-File-Inplace/README11
1 files changed, 11 insertions, 0 deletions
diff --git a/perl/perl-File-Inplace/README b/perl/perl-File-Inplace/README
new file mode 100644
index 0000000000..dbb9409b70
--- /dev/null
+++ b/perl/perl-File-Inplace/README
@@ -0,0 +1,11 @@
+perl-File-Inplace
+
+File::Inplace is a perl module intended to ease the common task of
+editing a file in-place. Inspired by variations of perl's -i option,
+this module is intended for somewhat more structured and reusable
+editing than command line perl typically allows. File::Inplace
+endeavors to guarantee file integrity; that is, either all of the
+changes made will be saved to the file, or none will. It also offers
+functionality such as backup creation, automatic field splitting
+per-line, automatic chomping/unchomping, and aborting edits partially
+through without affecting the original file.