Socket
Socket
Sign inDemoInstall

fawk

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fawk

Faux awk: awk for people who want to hack a bunch of text and don't want the power or complexity of awk


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

fawk

Not awk: awk for people who want to hack a bunch of text and don't want the power or complexity of awk. This is an attempt to cover some simple use cases of awk without creating a flow blown programming language.

fawk <filename> <expression: '$0'> <options>
input | fawk <expression: '$0'> <options>

Surround each item with double quotes:

# myfile.txt
oh
fawk
cat my_file | fawk '"$1"'
"oh"
"fawk"

Surround each item with double quotes and append a comma:

cat my_file | fawk '"$1"' --append ','

"oh",
"fawk",

Surround each item with double quotes and append a comma, but not on lines that contain the phrase 'oh'

cat my_file | fawk '"\1"' --append ',' --unless '/oh/'

"oh"
"fawk",

Contributing

After cloning this repo:

# Unit and linting
npm t


# Unit tests
npm run test:unit

# Linting
npm run lint

# Integration tests
# ensure that python and cram are installed (pip install cram)
npm run test:integration

Integration tests use cram

FAQs

Last updated on 23 Nov 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc