Linux and DevOps
Download and Watch Premium Linux and DevOps Courses Buy ads: https://telega.io/c/LinuxMastery
Ko'proq ko'rsatish📈 Telegram kanali Linux and DevOps analitikasi
Linux and DevOps (@linuxmastery) Ingliz til segmentidagi kanali faol ishtirokchi. Hozirda hamjamiyat 66 182 obunachidan iborat bo'lib, Taʼlim toifasida 2 491-o'rinni va Hindiston mintaqasida 5 182-o'rinni egallagan.
📊 Auditoriya ko‘rsatkichlari va dinamika
невідомо sanasidan buyon loyiha tez o‘sib, 66 182 obunachiga ega bo‘ldi.
15 Iyun, 2026 dagi oxirgi ma’lumotlarga ko‘ra kanal barqaror faollikka ega. Oxirgi 30 kunda obunachilar soni 410 ga, so‘nggi 24 soatda esa 15 ga o‘zgardi va umumiy qamrov yuqori darajada qolmoqda.
- Tasdiqlash holati: Tasdiqlanmagan
- Jalb etish (ER): Auditoriya o‘rtacha 14.57% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 3.73% ini tashkil etuvchi reaksiyalarni to‘playdi.
- Post qamrovi: Har bir post o‘rtacha 9 641 marta ko‘riladi; birinchi sutkada odatda 2 469 ta ko‘rish yig‘iladi.
- Reaksiyalar va o‘zaro ta’sir: Auditoriya faol: har bir postga o‘rtacha 27 ta reaksiya keladi.
- Tematik yo‘nalishlar: Kontent linux, scripting, command, 040k|, docker kabi asosiy mavzularga jamlangan.
📝 Tavsif va kontent siyosati
Muallif resursni shaxsiy fikrni ifoda etish maydoni sifatida ta’riflaydi:
“Download and Watch Premium Linux and DevOps Courses
Buy ads: https://telega.io/c/LinuxMastery”
Yuqori yangilanish chastotasi (oxirgi ma’lumot 16 Iyun, 2026 da olingan) sababli kanal doimo dolzarb va katta qamrovli bo‘lib qoladi. Analitika auditoriya kontent bilan faol hamkorlik qilishini, uni Taʼlim toifasidagi muhim ta’sir nuqtasiga aylantirishini ko‘rsatadi.
🌀 Learn how to install CentOS, perform common admin tasks from the command line, and get popular services up and running.📗 Topics: CentOS, Linux 📤 Join Linux and DevOps for more courses
You can use the find command's -exec option to call an external program to perform a specific action on the returned files that match specific criteria. For example, deleting files, listing file perms, and so on.
$ find ~/ -type f -exec ls -lah {} \;
This is very useful when performing the same action on multiple files in different locations.
The above command is an example of listing the permissions and other metadata of every file the find command finds.
A breakdown of the -exec option:
• exec ls - this tells find to execute the ls command on every filename that matches the search string.
• -lah - displays all files, including hidden files, their permissions, and other file metadata, such as sizes, in a human-readable format.
• {} - The “{}” placeholder represents each filename and must be the last item in the parameter list.
• ; - To indicate the end of the parameter list, a semicolon ";" is used. It must be escaped with a backslash "\" otherwise the shell will interpret it.
You can also use the + instead of the ; to indicate the end of the parameter list. There should be a space between the + and the curly braces "{}".
You can execute multiple commands using -exec in find. For example, this looks up word counts in text files and their disk usage in one invocation:
$ find . -name "*.txt" -exec wc {} \; -exec du -sh {} \;
That's it for today's tip!
Follow us for more byte-sized Linux tips and be a better-informed Linux user🐧If you're having trouble reading the directories in the $PATH variable, you can make use of the tr command to replace colons with the newline characters so each directory is displayed on a single line.
$ echo $PATH | tr ":" "\n"You can enable timestamps in your bash command history to see when you ran previous commands. This can be useful for tracing what you were working on and when.To add timestamps to your history, just set the HISTTIMEFORMAT environment variable like so:
$ export HISTTIMEFORMAT="%F %T "
Now when you view your history or grep through it, you'll see a timestamp next to each command indicating when it was run:
$ history | tail -n 5
Or to save a couple of keystrokes:
$ history 5
The format "%F %T" shows the date and time, but you can customize it to your liking.
Note: This does not put historical timestamps on commands you executed before setting HISTTIMEFORMAT and also this only works in bash.
The Linux Crash Course series on Learn Linux TV will teach you a valuable Linux-related concept or skill, one video at a time! This time around, Jay details the "AppImage", a special app format you can download and run immediately.
Endi mavjud! Telegram Tadqiqoti 2025 — yilning asosiy insaytlari 
