d command

d command runs a command in the background and redirects its output to a file.
Download

d command Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Freely Distributable
  • Price:
  • FREE
  • Publisher Name:
  • Dave Yost
  • Publisher web site:
  • http://yost.com/computers/d/

d command Tags


d command Description

d command runs a command in the background and redirects its output to a file. The d command runs a command in the background and redirects its output to a file. The output file is annotated with start and end time, the actual command used, cwd, host, etc.You can ask the d command to extract the last command from the output file and run it again, you can ask it to append to the file or not, and other goodies.It comes with handy little programs to look at the output, tail it, etc. d command is sort of trivial, but has been streamlined over many years.Usage: d c cmd arg ...or: d m or: d s or: d hDo a task in the background, with its stdout and stderr redirected to a file called out or to file or to a file named by a $yostD_OUTFILE environment variable. The d command usually does mv ,out outand then creates a new out file, but d can be told to append to out instead. The task argument is composed of individual letters:One of these is required: c Do the following command - redirection and piping work if quoted. m Do a make. s Do the same command again (extract the last command from out, and run it again (without 'nice' unless you ask for it again). h Print a history of what happened in this out file. These are optional: n Do it nicely. a Append to out. p Just print the command that would be executed; don't run it.The d command comes along with several helper shell functions:q tail -f out qq cat out qt tail -20 out cq clear ; q cqq clear ; qq wq wait "$@" ; printf "b" ; qq wqt wait "$@" ; printf "b" ; qtThe output from d into the file out consists of prologue output from the command epilogueas shown in the example below, which does this:Run a command (c) in the background, with output to the out file. Run the same (s) comand again, with nice (n), appending (a) the output to the existing out file. Show the out file. Show what will happen (p) if we try to run the same command again, using ‘d s’. Show the history (h) of commands and results contained in the out file.What's New in This Release:· The script was fixed so that in addition to zsh, it also works with bash, ksh, and sh.


d command Related Software