Git Product home page Git Product logo

alfred-pipe's Introduction

pipe transformation workflow for Alfred

An Alfred workflow enabling easy transformation of the current contents of the clipboard by piping through arbitrary shell one-liners.

Requirements

Usage

Trigger the workflow by hotkey or keyword (default=|, override with the keyword variable) followed by an arbitrarily simple or complex shell one-liner to transform the contents of the clipboard in-place; optionally use the Cmd-modifier to immediately paste the results into the foreground app, or the Alt-modifier to show the results in large type.

Two hotkeys are configurable:

  • transform the current contents of the clipboard (like the keyword); recommended hotkey: Ctrl-Cmd-\
  • transform the current selection in the foreground app; recommended hotkey: Ctrl-Cmd-C

When triggered via hotkey, the leading keyword (e.g. |) is not required.

Examples

  • Transform to UPPERCASE: | perl -nle 'print uc' or | tr a-z A-Z
  • Base64 encode: | base64
  • Base64 decode: | base64 --decode
  • Top 10 unique lines with counts: | sort | uniq -c | sort -rn | head -10

Built-ins

A number of example pipelines (including those above) are built-in.

Built-ins can be disabled en-mass by setting the load_builtins variable to any value other than yes.

Aliases

To save repetitive typing, custom aliases can be defined with the following syntax:

| alias NAME=PIPE | LINE @@@

The trailing @@@ (override with the alias_terminator variable) terminates the alias definition and causes it to be saved.

Examples

  • | alias tac=sed '1!G;h;$!d' @@@
  • | alias top10=sort | uniq -c | sort -rn | head -10 @@@

Alias removal

Any custom alias can be removed with:

| alias NAME=@@@

Contributions & Thanks

  • ctwise

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.