about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
...
* nq.1: add examplesChristian Neukirchen2015-08-281-0/+45
|
* fq: styleChristian Neukirchen2015-08-281-3/+3
|
* fq: open dirfd with O_DIRECTORY to fail earlyChristian Neukirchen2015-08-281-2/+4
|
* nq: open dirfd with O_DIRECTORY to fail earlyChristian Neukirchen2015-08-281-1/+1
|
* nq: mkdir $NQDIRChristian Neukirchen2015-08-281-0/+7
|
* fq: style fixesChristian Neukirchen2015-08-271-2/+2
|
* README.md: clarify what happens when gettimeofday runs backwardChristian Neukirchen2015-08-271-1/+2
|
* README.md: add some examplesChristian Neukirchen2015-08-271-0/+34
|
* nq: error handling for dup2Christian Neukirchen2015-08-271-2/+5
|
* nq: fsync after renameChristian Neukirchen2015-08-271-0/+3
| | | | | For details, see https://groups.google.com/forum/#!topic/comp.unix.programmer/AM2V83RCOVE
* README.md: document make installChristian Neukirchen2015-08-271-0/+9
| | | | Closes #11.
* Makefile: check depends on allChristian Neukirchen2015-08-271-1/+1
|
* Makefile: add make install ruleChristian Neukirchen2015-08-271-5/+20
|
* nq.1: typosChristian Neukirchen2015-08-251-2/+2
|
* tq.1: lintChristian Neukirchen2015-08-251-3/+4
|
* Add man pagesChristian Neukirchen2015-08-253-0/+319
|
* README: typoChristian Neukirchen2015-08-251-1/+1
|
* nq: add quiet flag -q.Christian Neukirchen2015-08-252-7/+13
|
* add zsh completionChristian Neukirchen2015-08-181-0/+27
|
* nq.c: fix time_t overflow on 32-bit machinesLv Zheng2015-08-111-1/+1
| | | | | | | In systems where time_t is defined as 32-bit integer, the multiplication by 1000 to get millisecond will cause an integer overflow. Fix this problem by explicit integer conversion.
* tq: add screen(1) supportChristian Neukirchen2015-08-102-10/+18
|
* README.md: document assumptionsChristian Neukirchen2015-08-101-0/+9
|
* tq: use fq.Christian Neukirchen2015-08-102-5/+4
|
* tq: reindent.Christian Neukirchen2015-08-101-5/+5
|
* README: updateChristian Neukirchen2015-08-091-2/+3
|
* fq: add usageChristian Neukirchen2015-08-091-0/+2
|
* fq: fix -q output when file contains no newline at allChristian Neukirchen2015-08-091-0/+3
|
* fq: cleanupsChristian Neukirchen2015-08-091-6/+9
|
* fq: realloc/strdup failure is fatalChristian Neukirchen2015-08-091-2/+2
|
* fq: expand and sort $NDIR/,* ourselvesChristian Neukirchen2015-08-091-11/+45
|
* fq: add -a to output non-locked jobs tooChristian Neukirchen2015-08-091-3/+6
|
* fq: add -q to only output the first line of each jobChristian Neukirchen2015-08-091-6/+34
|
* nq: check pipe(2) for errors.Christian Neukirchen2015-08-071-1/+4
|
* nq.c: add `static' qualifier to global functions.Lv Zheng2015-08-071-2/+2
|
* Makefile: clean target also removes fqLv Zheng2015-08-071-1/+1
|
* fq.sh: enable execute permissionLv Zheng2015-08-071-0/+0
|
* add .gitignoreLv Zheng2015-08-071-0/+4
|
* nq: launch job in own process group to simplify killing it all.Christian Neukirchen2015-08-071-0/+1
|
* nq: use snprintfChristian Neukirchen2015-08-061-3/+6
|
* avoid exec hack in fq testsChristian Neukirchen2015-08-051-3/+8
|
* test fqChristian Neukirchen2015-08-051-1/+20
|
* fq: close stdin, we never use itChristian Neukirchen2015-08-051-0/+2
|
* make fq behave more like fq.shChristian Neukirchen2015-08-051-4/+28
|
* reimplement fq in C.Christian Neukirchen2015-08-052-1/+111
|
* rename fq to fq.shChristian Neukirchen2015-08-052-1/+3
|
* more platformsChristian Neukirchen2015-08-051-2/+2
|
* fix missed sprintf of int64_tChristian Neukirchen2015-08-031-1/+1
|
* fq: output last job when all ran alreadyChristian Neukirchen2015-08-032-2/+9
|
* add testsChristian Neukirchen2015-08-032-0/+80
|
* redirect stdout/stderr before waiting, else nq sleep 100; b=$(nq sleep 100) ↵Christian Neukirchen2015-08-031-2/+4
| | | | stalls