Skip to content
This repository has been archived by the owner on Aug 28, 2021. It is now read-only.

nosarthur/coi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyPi version licence PyPI - Downloads

This project is no longer in development

I think the whole idea is invalid. A better solution is to

  • improvise the bash script
  • save it at the running directory

coi: manage shell script templates for reuse

I often improvise the same (annoying) bash scripts over and over again. This is my solution to cut the repetitive work.

This command-line tool can

  1. manage (CRUD) templates
  2. run template command with substitutions
  3. keep track of commands run in each folder for later reference

One could alternatively define shell functions for them.

examples

In the first example, I need to delete jobs with some key word. The varying part is BIHYEW10.

for x in `qstat -u $USER |grep BIHYEW10 |awk '{print $1}'`; do
  qdel $x
done

With coi set up, I can run

coi run -i BIHYEW10

The corresponding template is

for x in `qstat -u nosarthur |grep $i |awk '{print $$1}'`; do
  qdel $$x
done

Note that it's simply the Python [template strings](https://docs.python.org/3/library/string.html#template-strings ]).

In the second example, I often need to process data with a common directory pattern, e.g., ABC_5/ABC-out.cms:

for dname in *_5/; do python3 process.py $dname${dname%/}-out.cms; done

Here the variable parts are

  1. folder name pattern: *_5/
  2. command: $ABIN/generate.py

After saving a template, we can run

coi run -i "*_5" -c "python3 process.py" some-path

and the template is

cd $path
for dname in $i; do
  $c $$dname$${dname%/}-out.cms
done

where some-path will substitute $path.

In the third example, I often want to know how many jobs are done in many folders, and the criteria of 'done' may vary.

Suppose the folder structure is as follows

jobs-folder
├── sub1
│   ├── 1.input
│   ├── 1.output
│   └── 2.input
├── sub2
│   ├── 1.input
│   └── 2.input
├── sub3
│   ├── 1.input
│   ├── 1.output
│   ├── 2.input
│   └── 2.output
└── sub4
    ├── 1.input
    └── 1.output
coi -o "ll *.output" \
    -i "ll *.input" \
    jobs-folder

commands

  • run command
    • coi run -i <i> -c <c> -o <o> -t <name> <path>: run template command <name>
  • templates command
    • coi templates add <name>: create a new template called <name>
    • coi templates cp <name> <new-name>: copy <name> to a new template called <new-name>
    • coi templates ll <name>: show content of template <name>
    • coi templates ls <name>: show path of template <name>; You can pass it to your favorate editor.
    • coi templates rm <name>: delete template <name>
    • coi templates set <name>: set template <name> as default template
    • coi templates set: show default template name

The run command takes up to 3 parameters c, 'o', and 'i'. If template -t is not specified, default template is used. If <path> is omitted, current working directory is used.

customization

User defined templates are saved/searched in $XDG_CONFIG_HOME/coi (most likely ~/.config/coi/).

other tune-ups

alias coir='coi run'
alias coit='coi template'

design

Essentially this is a tool for shell script templating, with up to 3 substitutions.

  • templates are saved in
    • system folder: default
    • XDG/coi/templates/: user defined
    • the user defined templates shadow default ones if name clashes

TODO:

  • default template
  • auto complete for templates

integration with fzf

If json files exists in a path, we can let the user pick with fzf

About

manage shell script templates for reuse

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published