Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 285 Bytes

File metadata and controls

13 lines (10 loc) · 285 Bytes

Bash

Dates

date "+%Y-%m-%d:%H-%M-%S"

Stdout and Stderr redirection

1>> and 2>> are redirections for specific file-descriptors, in this case the standard output (file descriptor 1) and standard error (file descriptor 2).

command 1>> stdout 2>> stderr