• Stars
    star
    142
  • Rank 258,495 (Top 6 %)
  • Language
    Go
  • License
    MIT License
  • Created over 7 years ago
  • Updated almost 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

fill-in your command and execute

fillin

CI Status MIT License release

fill-in your command and execute

― separate action and environment of your command! ―

Motivation

We rely on shell history in our terminal operation. We search from our shell history and execute commands dozens times in a day.

Some programmers execute same commands switching servers. We do not just login with ssh {{hostname}}, we also connect to the database with psql -h {{psql:hostname}} -U {{psql:username}} -d {{psql:dbname}} and to Redis server with redis-cli -h {{redis:hostname}} -p {{redis:port}}. We switch the host argument from the localhost (you may omit this), staging and production servers.

Some command line tools allow us to login cloud services and retrieve data from our terminal. Most of such cli tools accept an option to switching between our accounts. For example, AWS command line tool has --profile option. Other typical names of options are --region, --conf and --account. When we specify these options directly, there are quadratic number of commands; the number of accounts times the number of actions. The fillin allows us to save the command something like aws --profile {{aws:profile}} ec2 describe-instances so we'll not be bothered by the quadratic combinations of commands while searching through the shell history.

The core concept of fillin lies in separating the action (do what) and the environment (to where) in the command. With this fillin command line tool, you can

  • make your commands reusable and it will make incremental shell history searching easy.
  • fill in the template variables interactively and their history will be stored locally.
  • invoke the same action switching multiple environment (local, staging and production servers, configuration paths, cloud service accounts or whatever)

Installation

Homebrew

brew install itchyny/tap/fillin

Build from source

go install github.com/itchyny/fillin@latest

Usage

The interface of the fillin command is very simple. Prepend fillin to the command and create template variables with {{...}}. So the hello world for the fillin command is as follows.

 $ fillin echo {{message}}
message: Hello, world!        # you type here
Hello, world!                 # fillin executes: echo 'Hello, world!'

The value of message variable is stored locally (in ~/.config/fillin/fillin.json; you can configure the directory by FILLIN_CONFIG_DIR). You can use the recently used value with the upwards key. Note that in fish shell you can use square brackets like fillin echo [[message]].

The {{message}} (or [[message]] in fish shell) is a template part of the command. As the identifier, you can use alphabets, numbers, underscore and hyphen. Thus {{sample-id}}, {{SAMPLE_ID}}, {{X01}} and {{FOO_example-identifier0123}} are all valid template parts.

One of the important features of fillin is variable scope grouping. Let's look into more practical example. When you connect to a PostgreSQL server, you can use:

 $ fillin psql -h {{psql:hostname}} -U {{psql:username}} -d {{psql:dbname}}
[psql] hostname: localhost
[psql] username: example-user
[psql] dbname: example-db

What's the benefit of psql: prefix? You'll notice the answer when you execute the command again:

 $ fillin psql -h {{psql:hostname}} -U {{psql:username}} -d {{psql:dbname}}
[psql] hostname, username, dbname: localhost, example-user, example-db   # you can select the most recently used entry with the upwards key

The identifiers with the same scope name (psql scope here) can be selected as pairs. You can input individual values to create a new pair after skipping the multi input prompt.

 $ fillin psql -h {{psql:hostname}} -U {{psql:username}} -d {{psql:dbname}}
[psql] hostname, username, dbname:             # just type enter to input values for each identifiers
[psql] hostname: example.org
[psql] username: example-org-user
[psql] dbname: example-org-db

The scope grouping behaviour is useful with some authorization keys.

 $ fillin curl {{example-api:base-url}}/api/1/example/info -H 'Authorization: Bearer {{example-api:access-token}}'
[example-api] base-url, access-token: example.com, accesstokenabcde012345

The base-url and access-token are stored in pairs so you can easily switch between local, staging and production environment authorization. Without the grouping behaviour, variable history searching will lead you to an unmatched pair of base-url and access-token. Since the curl endpoint are stored in the shell history and authorization keys are stored in fillin history, we'll not be bothered by the quadratic number of the command history.

In order to have the benefit of this grouping behaviour, it's strongly recommended to prepend the scope name. The psql: prefix on connecting to PostgreSQL database server, redis: prefix for Redis server are useful best practice in my opinion.

Disclaimer

This tool is not an encryption tool. The command saves the inputted values in a JSON file with no encryption. Do not use this tool for security reason.

Bug Tracker

Report bug at Issues・itchyny/fillin - GitHub.

Author

itchyny (https://github.com/itchyny)

License

This software is released under the MIT License, see LICENSE.

More Repositories

1

lightline.vim

A light and configurable statusline/tabline plugin for Vim
Vim Script
6,540
star
2

gojq

Pure Go implementation of jq
Go
3,016
star
3

calendar.vim

A calendar application for Vim
Vim Script
1,904
star
4

bed

Binary editor written in Go
Go
1,134
star
5

mmv

rename multiple files with editor
Go
735
star
6

vim-cursorword

Underlines the word under the cursor
Vim Script
581
star
7

sjsp

Simple JavaScript Profiler
Haskell
234
star
8

vim-gitbranch

Provides the branch name of the current git repository
Vim Script
199
star
9

timefmt-go

Efficient time formatting library (strftime, strptime) for Golang
Go
177
star
10

rexdep

Roughly extract dependency relation from source code
Go
171
star
11

landscape.vim

A colorscheme for Vim
Vim Script
137
star
12

maze

A maze command written in Go
Go
115
star
13

base58-go

Base58 encoding/decoding package and command written in Go
Go
106
star
14

vim-haskell-indent

If the plugin does not work for some syntax, feel free to report to the issue tracker!
Vim Script
105
star
15

thumbnail.vim

A thumbnail-style buffer selector for Vim
Vim Script
101
star
16

volume-go

Cross-platform audio volume control library for Go
Go
72
star
17

rassemble-go

Go implementation of Regexp::Assemble
Go
69
star
18

vim-qfedit

Edit the quickfix/location list freely
Vim Script
65
star
19

miv

Vim plugin manager written in Haskell
Haskell
65
star
20

json2yaml

An efficient JSON to YAML converter written in Go language
Go
64
star
21

vim-parenmatch

An efficient alternative to the standard matchparen plugin
Vim Script
59
star
22

dictionary.vim

Dictionary.app interface for Vim
Vim Script
58
star
23

screensaver.vim

Screensavers for Vim
Vim Script
53
star
24

gojo

Yet another Go implementation of jo
Go
49
star
25

fastinvsqrt

Fast inverse square root in programming languages
Makefile
49
star
26

github-migrator

GitHub repository migrator
Go
46
star
27

vim-highlighturl

URL highlight everywhere
Vim Script
45
star
28

dotfiles

my dotfiles
Vim Script
37
star
29

llvm-brainfuck

Brainfuck compiler based on LLVM API
C++
35
star
30

mkrg

Mackerel graph viewer in terminal
Go
34
star
31

qhs

SQL queries on CSV and TSV files
Haskell
33
star
32

lightline-powerful

Powerful settings for lightline.vim
Vim Script
26
star
33

procout

procout peeks write(2) of another process using ptrace(2), written in Rust
Rust
26
star
34

s3-cache-action

GitHub Action to save cache files and restore them from Amazon S3
TypeScript
22
star
35

event-go

Simple synchronous event pub-sub package for Golang
Go
20
star
36

github-better-header

Brings back a better GitHub header
HTML
20
star
37

cam

unix command cam: view images inside terminal
C
20
star
38

vim-winfix

Fix the focus and the size of windows in Vim
Vim Script
18
star
39

setup

DO NOT USE THIS
Shell
15
star
40

pihex-rs

Arbitrary place hexadecimal digits viewer of pi written in Rust
Rust
15
star
41

vim-gof

Vim Script
13
star
42

minivm

C
13
star
43

vim-external

Switch to external applications from Vim
Vim Script
11
star
44

mackerel-plugin-rs

Mackerel plugin helper library for Rust
Rust
11
star
45

jsparser

A JavaScript parser in JavaScript generated by Jison
CoffeeScript
11
star
46

ChromePlayer

A music player for local files, working on Google Chrome
JavaScript
11
star
47

astgen-go

interface{} => ast.Node
Go
9
star
48

screensaver.c

A clock screensaver in terminal
C
9
star
49

uptime-rs

Multi-platform uptime library for Rust
Rust
9
star
50

golang-simple-server-sample

A simple server sample in Go
Go
8
star
51

vim-pdf

pdf filetype plugin for Vim
Vim Script
8
star
52

shell-function-and

shell function: and
8
star
53

vim-grep

The only grep in Vim that I need...
Vim Script
8
star
54

zshhist-go

zsh histfile utility for Go
Go
7
star
55

brainfuck

brainfuck
Brainfuck
7
star
56

bin

My utility executables.
Shell
7
star
57

git-branch-name

Optimally fast branch name command for Git.
C
7
star
58

homebrew-tap

Homebrew formulae
Ruby
6
star
59

mackerel-client-rs

An API client library for Mackerel written in Rust (still in the developing stage; host APIs are not implemented yet)
Rust
6
star
60

minivm-go

Golang implementation of a stack-machine based programming language interpreter
Go
6
star
61

maze-c

unix command maze: generating a maze
C
6
star
62

vim-haskell-sort-import

Sort import statements in Haskell codes
Haskell
6
star
63

mackerel-plugin-battery

Battery plugin for Mackerel
Go
5
star
64

vim-closebuffer

Close buffers in Vim
Vim Script
5
star
65

vim-extracmd

Define extra commands.
Vim Script
5
star
66

unite-preview

A preview plugin for vimfiler, unite
Vim Script
4
star
67

mackerel-client-hs

Mackerel API client in Haskell
Haskell
4
star
68

2bf

2bf - generates a Brainfuck code
C
4
star
69

vim-term

Vim Script
3
star
70

maketen-go

Create 10 from numbers!
Go
3
star
71

vim-cmdline-ranges

Quickly start/edit cmdline-ranges in Vim
Vim Script
3
star
72

Filter.js

A sample of image processing with JavaScript and canvas
JavaScript
3
star
73

vim-quickrun-lightline-hooks

Vim Script
3
star
74

vim-autoft

Set filetype automatically in Vim
Vim Script
3
star
75

itchyny

itchyny's profile page
3
star
76

tie

Go
3
star
77

fractal

fractal figures in gnuplot
3
star
78

procalive

procalive keeps your process alive
Rust
3
star
79

zsh-auto-fillin

Automatic fillin https://github.com/itchyny/fillin
Shell
3
star
80

c2bf.hs

Convert C to Brainfuck (not working, deprecated product)
Haskell
2
star
81

homebrew-rexdep

Deprecated in favor of https://github.com/itchyny/homebrew-tap
2
star
82

vim-cmdline-escape

Escape special characters on cmdline
Vim Script
2
star
83

vim-extra-snippets

My own snippets
Vim Snippet
2
star
84

bf

bf - executes a Brainfuck code
C
2
star
85

setupfiles-go

Create files and directories easily for tests in Go
Go
2
star
86

syscall-study

Go
2
star
87

vim-histexclude

Exclude by patterns from the histories.
Vim Script
2
star
88

vim-spellbad-pattern

Register regexps to SpellBad
Vim Script
2
star
89

mackerel-plugin-dice-sh

Dice plugin for Mackerel
Shell
2
star
90

unite-auto-open

starting or opening files action for unite
Vim Script
2
star
91

mtimedir

Go
2
star
92

sbt-compile-warn

Aggregate sbt compile warnings
Go
2
star
93

codeforces

Codeforces in Haskell
Haskell
2
star
94

browsershell

A shell in your browser
JavaScript
2
star
95

autolatex

A shell script to compile a LaTeX file
Shell
2
star
96

formulate

Homebrew formula managing script
Shell
2
star
97

mmpp

Mackerel metric pretty printer
Rust
1
star
98

atcoder

AtCoder in Rust
Rust
1
star
99

mackerel-plugin-dice-rs

Dice plugin example using mackerel-plugin-rs
Rust
1
star
100

unite-changetime

An action for unite/vimfiler, changing modified time of a file
Vim Script
1
star