Wildcards Practice and Soft & Hard Links
Wildcards PracticeCreate test files with different extensions: touch file1.txt file2.txt file3.log file4.log test1.txt test2.log Use wildcard * to filter files: ls *.txt ls *.log Use wildcard ? to match a single character: ls file?.txt Use character range [1-2]: ls file[1-2].txt Delete files using wildcard: rm *.log Take screenshots before and after deletion. Soft & Hard…
