Salman Sajjad on LinkedIn: #linuxtips #commandline #filesearch #find #salmansajjad #simensooz… (2024)

Salman Sajjad

Email Deliverability Analyst | Ensuring Inbox Success and Compliance

  • Report this post

🐧 Linux Tip of the Day: Efficient File Searching! 🔍Searching for files in Linux? Don't waste time scrolling through directories. Use the 'find' command!To find a file named 'example.txt' anywhere on your system:find / -name example.txtYou can also search by file type, like finding all PDF files:find / -name *.pdfThe 'find' command is your trusty file hunter. 🕵️♂️🌐 #LinuxTips #CommandLine #FileSearch #find #salmansajjad #simensooz #emaildelivery

Like Comment

To view or add a comment, sign in

More Relevant Posts

  • Anis HASSEN

    Electrical and Automation Engineer

    • Report this post

    🚀 Master the Linux Terminal with These 10 Commands:🔍 1. ls - List Contents🚪 2. cd - Change Directory📁 3. mkdir - Make Directory📄 4. cat - View/Concatenate Files📰 5. nano/vi - Text Editors🔄 6. cp - Copy Files/Directories🔀 7. mv - Move/Rename Files📚 8. man - Manual Pages🔍 9. grep - Search File Contents☠️ 10. rm - Delete Files/Directories#linux #commandsline #embeddedsystems

    • Salman Sajjad on LinkedIn: #linuxtips #commandline #filesearch #find #salmansajjad #simensooz… (3)

    36

    Like Comment

    To view or add a comment, sign in

  • Alisha Acharya

    Web Developer | Have great coding skills in CoreJava, C++. A passionate graduate with great interpersonal and communication skills | Keen to make career in Software Developement

    • Report this post

    Hello #linkedinfamily Let's learn the basic essential Linux Commands.So, the basic commands to navigate and manage files in Linux:cd: Change directorymkdir: Create a new directoryls: List directory contentstouch: Create a new empty fileecho: Display a line of textnano: Simple text editorvi: Powerful text editorrmdir: Remove empty directoriesrm -r: Remove directories and their contents recursivelyclear: Clear the terminal screencat: Concatenate and display file contentsrm: Remove files or directoriescp: Copy files or directoriesmv: Move or rename files or directorieshead: Display the first few lines of a filetail: Display the last few lines of a filestat: Display file or file system status #LinuxCommands #TechSkills #OpenSource #Linux #CommandLine #TechEducation

    Like Comment

    To view or add a comment, sign in

    • Report this post

    I recently posted about the “tac” command in Linux. Here’s another handy little tool for your copy and paste enjoyment…➡️ Today’s tool: xclipxclip allows you to directly place the contents of a text file onto the clipboard Install: sudo apt update sudo apt install xclipUsage: xclip <filename>…or pipe it along with your command if you like, like tail for example to grab the last few lines of a log file. Much easier than using nano or your text editor of choice to highlight and copy.🐧#kali#linux#xclip

    3

    Like Comment

    To view or add a comment, sign in

  • Kadeem O'Gilvie

    Network Engineer | CCNA

    • Report this post

    Created a document on Samba configuration to host shared folders on your Linux machine for use at your home lab. Step-by-step guide in one document versus scouring multiple forums online to find that one missing piece.Inspired by Daniel Dib and his blog. Hope to emulate his writing style with info that actually matters one day lol.No blog site yet but its available for download in PDF on my github.https://lnkd.in/eww_hrAj#Linux

    Linux/SambaConfig.pdf at main · kadeeeem/Linux github.com

    25

    1 Comment

    Like Comment

    To view or add a comment, sign in

  • Mohammad Abdoli

    Embedded Linux | Embedded systems design

    • Report this post

    🔧 Linux CLI simple but practical Tricks Series: Command Substitution 🚀Hej guys. Welcome back to the Linux CLI simple but practical Tricks Series! Today, let's dive into a powerful technique: Command Substitution. 💡In Linux, back-quotes (``) or the modern dollar sign and parentheses ($(...)) allow you to capture command output for further use. # Using $() result=$(command) # Using backquotesresult=`command` Here's a practical use in action:# total_files_and_directories=$(ls -l | grep -c "^")# echo "Total files and directories in the current directory:$total_files_and_directories"# current_date=`date +"%Y-%m-%d"`# echo "Today's date is $current_date"Efficient, right? see you soon with new simple but practical tricks.⬇️ #LinuxCLI #linuxtips

    • Salman Sajjad on LinkedIn: #linuxtips #commandline #filesearch #find #salmansajjad #simensooz… (13)

    11

    Like Comment

    To view or add a comment, sign in

  • Naveen Kumar

    Systems Engineer | IT Infrastructure and Operations | Windows AD | M365 | Cloud | Windows & Linux.

    • Report this post

    🌟 Linux Tip: Efficient File Searching! 🌟Quickly find files and directories with the find command 🔍🔧 Breakdown🔷 find /var/log: Search in the /var/log directory.🔷 -name "*.log": Look for files ending with .log.🔷 -mtime -7: Find files modified in the last 7 days.Efficiently locate important files and streamline your troubleshooting process! 🚀✨#Linux #SysAdmin #FileSearch #TechTips #Linuxtip

    • Salman Sajjad on LinkedIn: #linuxtips #commandline #filesearch #find #salmansajjad #simensooz… (17)

    29

    4 Comments

    Like Comment

    To view or add a comment, sign in

  • Kenneth H.

    CyberSecurity: Defense Hacker | Cyber Defense Analyst | Virtualization | Threat Assessment | Quality Assessment | Risk Management | Veteran | MSSA Grad

    • Report this post

    Exciting news to share! After weeks of perseverance, I finally completed making a pwnagotchi. It wasn't an easy task, but thanks to a helpful YouTube video by @TalkingSasquach and the Xyl0se New Guerilla Guide, I was able to get the software to load and work with the updated hardware. I even got to practice my ssh skills by working with the internet and Linux OS configuration files. Feeling accomplished and ready for the next challenge! #pwnagotchi #linux #codinglife

    1

    1 Comment

    Like Comment

    To view or add a comment, sign in

  • Sushant Pruthviraj Bhagat

    Data Analyst | Cloud | Linux | Red Hat Certified | Google Certified

    • Report this post

    Simple Introduction of Touch Command:-touch command is used to create empty files by using the touch command we can create multiple files at a time. The most important touch command is used to change the time stamp of files and directories.syntax of the touch command:-#touch <file name> ---- create single file#touch <filename1> <filename2> <filename3> ------ create multiples file.#linux #linuxforbeginners

    1

    Like Comment

    To view or add a comment, sign in

  • Dhruv Gupta

    Student at Khwaja Moinuddin Chishti Language UniversityB.tech student

    • Report this post

    🚀Let's talk about the power of Linux extensions beyond the usual TXT files! From managing directories with .dir to configuration prowess with .conf, these extensions are the secret sauce that spices up our Linux experience. Join the conversation🧾 and unlock the full potential of your Linux system beyond the basics! 🔍 #Linux #Extensions #TechEnthusiast #coding Deepak MauryaTo know more about extentions ,how create and how to save just click on the below post :https://lnkd.in/ddvdbZbx

    How to Save Files Excluding TXT Extensions: Simplifying File Management medium.com

    6

    Like Comment

    To view or add a comment, sign in

  • Rahul patel

    Btech | Artificial intelligence | machine learning

    • Report this post

    hello everyone! today i learn how to save files in Linux in.py format, you can save a file with a.py extension using a text editor or an integrated development environment (IDE). Here’s a step-by-step guide using the command line and a text editor:https://lnkd.in/g4dgxZvSDeepak Maurya #linux

    • Salman Sajjad on LinkedIn: #linuxtips #commandline #filesearch #find #salmansajjad #simensooz… (28)

    6

    Like Comment

    To view or add a comment, sign in

Salman Sajjad on LinkedIn: #linuxtips #commandline #filesearch #find #salmansajjad #simensooz… (30)

Salman Sajjad on LinkedIn: #linuxtips #commandline #filesearch #find #salmansajjad #simensooz… (31)

817 followers

  • 94 Posts

View Profile

Follow

Explore topics

  • Sales
  • Marketing
  • IT Services
  • Business Administration
  • HR Management
  • Engineering
  • Soft Skills
  • See All
Salman Sajjad on LinkedIn: #linuxtips #commandline #filesearch #find #salmansajjad #simensooz… (2024)
Top Articles
Latest Posts
Article information

Author: Edwin Metz

Last Updated:

Views: 5712

Rating: 4.8 / 5 (58 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Edwin Metz

Birthday: 1997-04-16

Address: 51593 Leanne Light, Kuphalmouth, DE 50012-5183

Phone: +639107620957

Job: Corporate Banking Technician

Hobby: Reading, scrapbook, role-playing games, Fishing, Fishing, Scuba diving, Beekeeping

Introduction: My name is Edwin Metz, I am a fair, energetic, helpful, brave, outstanding, nice, helpful person who loves writing and wants to share my knowledge and understanding with you.