Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 291 Bytes

Bash-CheatSheet.md

File metadata and controls

25 lines (21 loc) · 291 Bytes

Bash Cheat Sheet

Return to Previous Directory

cd -

Find Previous Command

Also known as reverse-i-search

Ctrl + R <match>

Here-Document

$ wc << EOF
> one two three
> four five
> EOF
2 5 24

See also "here-string
```bash
command <<<$word