Man page - str_replace(1)

Packages contains this manual

Manual

STR_REPLACE

NAME
SYNOPSIS
DESCRIPTION
RETURN VALUES
EXAMPLE
NOTES
AUTHOR

NAME

str_replace - literal search and replace in files (in place) and in STDIN

SYNOPSIS

str_replace Search Replace File

DESCRIPTION

Non-Regex text search and replace for linux

str_replace will enable you to do literal search and replace in files (in place) and in STDIN

No messing with regular expression anymore. No more sed or awk or perl -pie . This handy script written in perl will replace text exactly as you want, No matter it has the so-called special characters or not. Just like str_replace PHP function.

RETURN VALUES

0 ok.

1 syntax error.

2 if file not found.

EXAMPLE

To read input from STDIN and write to STDOUT.

STDIN | str_replace Search Replace

NOTES

β€’

Search and replace always case-sensitive

β€’

Always do global Search and replace

β€’

Don’t care about lines.

β€’

It may work in Windows as well.

β€’

tested with unicode (I surprised it worked correctly!)

AUTHOR

This man page has been compiled and modified by Patrick Schleizer (adrelanos@whonix.org) based contains contents from https://github.com/Samer-Al-iraqi/Linux-str_replace/blob/master/README.md Copyright: Copyright (c) 2016 Samer-Al-iraqi License: MIT License