Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 376 Bytes

shell.md

File metadata and controls

28 lines (20 loc) · 376 Bytes

Bash

Find total size of files found with find

find -print0 | xargs -0 du -hc

Videos

Convert file to UTF-8 encoding

enconv -L ru -x UTF-8

Working with archives

Unzip file without saving

wget -qO- link | bsdtar -xvf -

List files

Git

Find branches that contain given commit

git branch --contains $commit

Vim