Science and technology

6 Linux metacharacters I like to make use of on the command line

Early in my Linux journey, I discovered how you can use the command line. It’s what units Linux aside. I may lose the graphical person interface (GUI), however it was pointless to rebuild the machine utterly. Many Linux computer systems run headless, and you’ll accomplish all the executive duties on the command line. It makes use of many fundamental instructions that every one are aware of—like ls, ls-l, ls-l, cd, pwd, prime, and plenty of extra.

Shell metacharacters on Linux

You can prolong every of these instructions by means of using metacharacters. I did not know what you referred to as them, however metacharacters have made my life simpler.

Pipe |

Say that I wish to know all of the cases of Firefox operating on my system. I can use the ps command with an -ef to record all cases of the packages operating on my system. Now I’d prefer to see simply these cases the place Firefox is concerned. I take advantage of considered one of my favourite metacharacters, the pipe | the outcome to grep, which searches for patterns. 

$ ps -ef | grep firefox 

Output redirection >

Another favourite metacharacter is the output redirection >. I take advantage of it to print the outcomes of all of the cases that Intel talked about on account of a dmesg command. You might discover this useful in {hardware} troubleshooting. 

$ dmesg | grep amd > amd.txt
$ cat amd.txt
[ 0.897] amd_uncore: 4 amd_df counters detected
[ 0.897] amd_uncore: 6 amd_l3 counters detected
[ 0.898] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/financial institution).

Asterisk *

The asterisk * or wildcard is a favourite when in search of recordsdata with the identical extension—like .jpg or .png. I first grow to be the Picture listing on my system and use a command like the next: 

$ ls *.png
BlountScreenPicture.png
DisplaySettings.png
EbookStats.png
StrategicPlanMenu.png
Screenshot from 01-24 19-35-05.png

Tilde ~

The tilde ~ is a fast option to get again to your own home listing on a Linux system by coming into the next command: 


Dollar image $

The $ image as a metacharacter has completely different meanings. When used to match patterns, it means any string that ends with a given string. For instance, when utilizing each metacharacters | and $

$ ls | grep png$
BlountScreenPicture.png
DisplaySettings.png
EbookStats.png
StrategicPlanMenu.png
Screenshot from 01-24 19-35-05.png

Carat ^

The ^ image restricts outcomes to objects that begin with a given string. For instance, when utilizing each metacharacters | and ^

$ ls | grep ^Screen
Screenshot from 01-24 19-35-05.png

Many of those metacharacters are a gateway to regular expressions, so there’s much more to discover. What are your favourite Linux metacharacters, and the way are they saving your work?

Most Popular

To Top