wiki:bash_commands
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
wiki:bash_commands [2022/09/19 21:53] – created antisa | wiki:bash_commands [2024/07/22 10:32] (current) – [See also] add nginx_logs_parsing_commands antisa | ||
---|---|---|---|
Line 2: | Line 2: | ||
====== Bash commands ====== | ====== Bash commands ====== | ||
- | Remove first character: | + | ===== Remove first character: |
for f in *; do mv " | for f in *; do mv " | ||
- | Add 8 to filename: | + | ==== Add 8 to filename: |
for f in *; do mv " | for f in *; do mv " | ||
+ | ==== Sort folders by disk usage, larger first: ==== | ||
+ | du -sh /* | sort -hr | ||
+ | |||
+ | ==== Checksum directory recursively ==== | ||
+ | |||
+ | find / | ||
+ | |||
+ | ==== Comment and uncomment lines containing specific strings ==== | ||
+ | sed -e '/ | ||
+ | sed -e '/ | ||
+ | |||
+ | ==== Search and replace strings in multiple html files: ==== | ||
+ | for file in $(grep -cr --include " | ||
+ | |||
+ | \b is word boundary, meaning it won't select strings like string_somestring_smth_smth Put sed -n... and ..newstring/ | ||
+ | |||
+ | ==== Print from certain line to certain line: ==== | ||
+ | |||
+ | zcat server_20170726-060002.log.gz | awk '/ | ||
+ | |||
+ | ==== Sed add word/string after specific string on same line i.e. add " | ||
+ | sed ' | ||
+ | |||
+ | |||
+ | ==== Print disk usage, summarize in GB ==== | ||
+ | du -s / | ||
+ | |||
+ | ==== Remove old unused kernels ==== | ||
+ | |||
+ | sudo dpkg -l ' | ||
+ | | ||
====== Tested on ====== | ====== Tested on ====== | ||
* | * | ||
====== See also ====== | ====== See also ====== | ||
+ | * [[wiki: | ||
====== References ====== | ====== References ====== | ||
wiki/bash_commands.1663624422.txt.gz · Last modified: 2022/09/19 21:53 by antisa