Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fawk

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

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

  • 0.1.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
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

Package last updated on 23 Nov 2016

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc