Skip to content

Instantly share code, notes, and snippets.

@AlexNDRmac
AlexNDRmac / shell_command.md
Last active June 27, 2019 13:16
shell commands

Find all files bigger then XX MB

"du -h" makes better list of files

"sort -n" makes list sorted by file size (desc)

find ./ -size +50M -type f -exec du -h {} \; | sort -k1 -h
@sergeyklay
sergeyklay / sed-cheatsheet.md
Last active June 5, 2024 19:51
Sed Cheatsheet

Sed Cheat Sheet

Sed command line options

sed [options] sed-command [input-file]
Option Description Example