Code Monkey home page Code Monkey logo

fsed's Introduction

fsed

A wrapper around sed for safe automated find&sed-ing

fsed returns with exit code 42, if PATTERN wasn't matched and thus ACTION didn't happen. Also supports a mode where exit code is 42 unless PATTERN was matched exactly N times.

Example usage: fsed '/foo/' 's//bar/' baz.txt

Sources

Detailed explanation of the mechanism: https://stackoverflow.com/a/15966279

Script based on stripped down template: https://gist.github.com/Ithanil/b72d61091b73cd8cb0c33de3de593834

Examples

  1. Substitute pattern and verify:

fsed '/foo/' 's//bar' baz.txt && echo "Found" || "Not found"

  1. Delete pattern and verify number of matches

fsed -c 1 '/foo/' 'd' baz.txt && echo "Exactly 1 match" || echo "Not exactly 1 match"

  1. Substitution with different pattern / action delimiters:

fsed '\|foo|' 's!!bar!' baz.txt

  1. (Caveat!) Append a line (requiring explicit line breaks):
fsed '/foo/' 'a\
appended bar line
' baz.txt
  1. In-place edit without following symlinks (i.e. default sed behavior):

fsed -i --no-follow-symlinks '/foo/' 's//bar' baz.link

fsed's People

Contributors

ithanil avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.