Linux and DevOps
Download and Watch Premium Linux and DevOps Courses Buy ads: https://telega.io/c/LinuxMastery
Show moreπ Analytical overview of Telegram channel Linux and DevOps
Channel Linux and DevOps (@linuxmastery) in the English language segment is an active participant. Currently, the community unites 66 182 subscribers, ranking 2 491 in the Education category and 5 182 in the India region.
π Audience metrics and dynamics
Since its creation on Π½Π΅Π²ΡΠ΄ΠΎΠΌΠΎ, the project has demonstrated rapid growth, gathering an audience of 66 182 subscribers.
According to the latest data from 15 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 410 over the last 30 days and by 15 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 14.57%. Within the first 24 hours after publication, content typically collects 3.73% reactions from the total number of subscribers.
- Post reach: On average, each post receives 9 641 views. Within the first day, a publication typically gains 2 469 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 27.
- Thematic interests: Content is focused on key topics such as linux, scripting, command, 040k|, docker.
π Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
βDownload and Watch Premium Linux and DevOps Courses
Buy ads: https://telega.io/c/LinuxMasteryβ
Thanks to the high frequency of updates (latest data received on 16 June, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Education category.
π 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.
Available now! Telegram Research 2025 β the year's key insights 
