Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
👍3🔥2
Anonymous Quiz
40%
rm $(find . -type f -empty)
39%
find . -type f -empty -delete
7%
xargs -0 rm < find . -type f -empty
15%
find . -name '*.empty' -exec rm {} +
🔥1💊1
Anonymous Quiz
9%
git cherry-pick
73%
git commit --amend
5%
git rebase -i
12%
git reset --soft HEAD~1
😁3👀3
Anonymous Quiz
12%
git branch -r
9%
git show-branch
5%
git reflog
74%
git branch --contains <commit>
Anonymous Quiz
60%
git merge --squash
10%
git cherry-pick
1%
git bisect
29%
git rebase -i
Anonymous Quiz
71%
git cherry-pick
14%
git merge
13%
git rebase
3%
git revert
❤1
Проактивная (proactive) — анализирует метрики и логи для выявления потенциальных проблем до их возникновения.
Прогнозирующая (predictive) — использует машинное обучение или статистику для предсказания будущих проблем. Отличия заключаются в целях и методах обработки данных: от реагирования до предсказания.
Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥9👍3
Anonymous Quiz
5%
xargs sed -i 's/foo/bar/g'
13%
awk '{gsub(/foo/, "bar"); print}'
20%
sed 's/foo/bar/g' *
62%
find . -type f -exec sed -i 's/foo/bar/g' {} +
Anonymous Quiz
72%
command 2> error.log
8%
command &> error.log
5%
command | tee error.log
15%
command > error.log
👍3
Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
👍5🔥3
Anonymous Quiz
31%
rm $(find . -type f -empty)
5%
xargs -0 rm < find . -type f -empty
19%
find . -name '*.empty' -exec rm {} +
46%
find . -type f -empty -delete
👍1🤯1
Anonymous Quiz
24%
grep -v -e ".*" file
1%
sort file
49%
sort file | uniq
25%
uniq file
🤯1
Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
👍13
Anonymous Quiz
7%
head -50 file
34%
cat file | tail -n 50
58%
tail -50 file
1%
more +50 file
💊8😁4
Anonymous Quiz
46%
kill $(pgrep process_name)
14%
killall process_name
10%
all of the above
29%
pkill process_name
💊1
Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
👍11
Anonymous Quiz
23%
chmod
0%
chgrp
0%
setfacl
76%
chown
❤3
Anonymous Quiz
11%
chmod 765 file
59%
chmod 754 file
11%
chmod 774 file
20%
chmod 764 file
Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
👍8🔥3
Anonymous Quiz
27%
df
51%
tree
10%
ncdu
12%
du
💊7🤯1