{"id":15605,"date":"2023-11-24T20:18:53","date_gmt":"2023-11-24T20:18:53","guid":{"rendered":"https:\/\/businessyield.com\/tech\/?p=15605"},"modified":"2023-11-24T20:18:56","modified_gmt":"2023-11-24T20:18:56","slug":"20-basic-linux-commands-with-examples-a-beginners-guide","status":"publish","type":"post","link":"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/","title":{"rendered":"20 Basic Linux Commands With Examples: A Beginner&#8217;s Guide","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"\n<p>As a beginner, you must be familiar with basic Linux commands to complete an operation. This is because, while performing a task, we all need shortcuts. Shortcuts help us to complete a task quickly. <\/p>\n\n\n\n<p>Linux comes with such commands which are one to two words. Using these commands, you can perform several operations in no time. <\/p>\n\n\n\n<p>According to a\u00a0<a href=\"https:\/\/insights.stackoverflow.com\/survey\/2020#technology-platforms\" target=\"_blank\" rel=\"noreferrer noopener\">StackOverflow survey<\/a>, Linux is the most-used operating system by professional developers, with an impressive 55.9% market share. It\u00a0isn\u2019t just a coincidence. Linux is free and open-source, has better security than its competitors, and boasts a powerful command line that makes developers and power users more effective. You also have access to a powerful package manager and a bunch of development tools.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-is-a-linux-command\"><span id=\"what-are-linux-commands\"><strong>What are Linux commands?<\/strong><a href=\"https:\/\/kinsta.com\/blog\/linux-commands\/#what-is-a-linux-command\"><\/a><\/span><\/h2>\n\n\n\n<p>A Linux command is a program or utility that runs on the command line. A\u00a0command line\u00a0is an interface that accepts lines of text and processes them into instructions for your computer.<\/p>\n\n\n\n<p>Any graphical user interface (GUI) is just an abstraction of command-line programs. For example, when you close a window by clicking on the \u201cX,\u201d there\u2019s a command running behind that action.<\/p>\n\n\n\n<p>A&nbsp;<strong>flag&nbsp;<\/strong>is a way we can pass options to the command you run. Most Linux commands have a help page that we can call with the flag&nbsp;<code>-h<\/code>. Most of the time, flags are optional.<\/p>\n\n\n\n<p>An&nbsp;<strong>argument&nbsp;<\/strong>or parameter is the&nbsp;<strong>input<\/strong>&nbsp;we give to a command so it can run properly. In most cases, the argument is a file path, but it can be anything you type in the terminal.<\/p>\n\n\n\n<p>You can invoke flags using hyphens (<code>-<\/code>) and double hyphens (<code>--<\/code>), while argument execution depends on the order in which you pass them to the function.<\/p>\n\n\n\n<p>Linux commands are a type of Unix command or shell procedure. They are the basic tools used to interact with Linux on an individual level. Linux operating system is used on servers, desktops, and maybe even your smartphone. It has a lot of command line tools that can be used for virtually everything on the system. <\/p>\n\n\n\n<p>All users should be familiar with most of these commands as they are required for most operating system tasks and computer programming. Linux commands are used to perform a variety of tasks, including displaying information about files and directories.<\/p>\n\n\n\n<h2 id=\"top-20-basic-linux-commands-for-beginners\" class=\"wp-block-heading\"><strong>Top 20 basic Linux commands for beginners<\/strong><\/h2>\n\n\n\n<h3 id=\"1-is-command\" class=\"wp-block-heading\"><strong>1.\u00a0Is\u00a0command<\/strong><\/h3>\n\n\n\n<p><code>ls<\/code>\u00a0is probably the first command every Linux user typed in their terminal. It allows you to list the contents of the directory you want (the current directory by default), including files and other nested directories.<\/p>\n\n\n\n<p>The\u00a0ls command\u00a0is commonly used to identify the files and directories in the working directory. This command is one of the many often-used Linux commands that you should know.<\/p>\n\n\n\n<p>This command can be used by itself without any arguments and it will provide us the output with all the details about the files and the directories in the current working directory. There is a lot of flexibility offered by this command in terms of displaying data in the output. <\/p>\n\n\n\n<p>Check the below image for the output.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/journaldev.nyc3.cdn.digitaloceanspaces.com\/2020\/01\/ls-command-default.png?w=1200&#038;ssl=1\" alt=\"Ls Command Default\" \/><\/figure><\/div>\n\n\n<p>As you can see in the above image, using the command by itself without any arguments will give us an output with all the files and directories in the directory. The command offers a lot of flexibility in terms of displaying the data in the output.<\/p>\n\n\n\n<h3 id=\"2-pwd-command\" class=\"wp-block-heading\"><strong>2. pwd command<\/strong><\/h3>\n\n\n\n<p>The\u00a0<code>pwd<\/code>\u00a0command stands for \u201cprint working directory,\u201d and it outputs the absolute path of the directory you\u2019re in. For example, if your username is \u201cjimmy\u201d and you\u2019re in your Documents directory, its absolute path would be:\u00a0<code>\/home\/jimmy\/Documents<\/code>.<\/p>\n\n\n\n<p>This command is mostly used to print the current working directory on your terminal. It is also one of the most commonly used commands.\u00a0<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/journaldev.nyc3.cdn.digitaloceanspaces.com\/2020\/01\/pwd-default-output.png?w=1200&#038;ssl=1\" alt=\"Pwd Default Output\" \/><\/figure><\/div>\n\n\n<p>Now, your terminal prompt should usually have the complete directory anyway. But in case it doesn\u2019t, this can be a quick command to see the directory that you\u2019re in. Another application of this command is when creating scripts where this command can allow us to find the directory where the script has been saved.<\/p>\n\n\n\n<h3 id=\"3-mkdir-command\" class=\"wp-block-heading\"><strong>3. mkdir command<\/strong><\/h3>\n\n\n\n<p>To create folders in the shell, you use the\u00a0<code>mkdir<\/code>\u00a0command. Just specify the new folder\u2019s name, ensure it doesn\u2019t exist, and you\u2019re ready to go.<\/p>\n\n\n\n<p>This\u00a0mkdir command\u00a0allows you to create fresh directories in the terminal itself. The default syntax is mkdir &lt;directory name&gt; and the new directory will be created.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>root@ubuntu:~# mkdir &lt;folder name&gt;<\/code><\/pre>\n\n\n\n<p>For example, if you want to create a directory as\u00a0<strong>\u201cBusinessYield\u201d<\/strong>\u00a0then the basic syntax would be: <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mkdir BusinessYield<\/code><\/pre>\n\n\n\n<p>In case you want to create another directory inside the main directory BusinessYield to store projects, you can use the following command to do so.\u00a0<strong>mkdir BusinessYield\/projects<\/strong><\/p>\n\n\n\n<h3 id=\"4-cp-command\" class=\"wp-block-heading\"><strong>4. cp command<\/strong><\/h3>\n\n\n\n<p>The\u00a0<code>cp<\/code> command\u00a0of Linux is equivalent to copy-paste and cut-paste in Windows.\u00a0It\u2019s so easy to copy files and folders directly in the Linux terminal that sometimes it can replace conventional file managers.<\/p>\n\n\n\n<p>To use the&nbsp;<code>cp<\/code>&nbsp;command, just type it along with the source and destination files:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cp file_to_copy.txt new_file.txt<\/code><\/pre>\n\n\n\n<p>You can also copy entire directories by using the recursive flag:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cp -r dir_to_copy\/ new_copy_dir\/<\/code><\/pre>\n\n\n\n<p>Remember that in Linux, folders end with a forward slash (<code>\/<\/code>).<\/p>\n\n\n\n<h3 id=\"5-cd-command\" class=\"wp-block-heading\"><strong>5. cd command<\/strong><\/h3>\n\n\n\n<p>The&nbsp;<code>cd<\/code>&nbsp;command is highly popular, along with&nbsp;<code>ls<\/code>. It&nbsp;refers to \u201c<strong>c<\/strong>hange&nbsp;<strong>d<\/strong>irectory\u201d and, as its name suggests, switches you to the directory you\u2019re trying to access.<\/p>\n\n\n\n<p>For instance, if you\u2019re inside your Documents directory and you\u2019re trying to access one of its subfolders called&nbsp;<strong>Videos<\/strong>, you can enter it by typing:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd Videos<\/code><\/pre>\n\n\n\n<p>You can also supply the absolute path of the folder:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/home\/BusinessYield\/Documents\/Videos<\/code><\/pre>\n\n\n\n<p>There are some tricks to the\u00a0<code>cd<\/code>\u00a0command that can save you a lot of time when playing around with it:<\/p>\n\n\n\n<h5 class=\"wp-block-heading\" id=\"1-go-to-the-home-folder\"><strong>1) Go to the home folder<\/strong><a href=\"https:\/\/kinsta.com\/blog\/linux-commands\/#1-go-to-the-home-folder\"><\/a><\/h5>\n\n\n\n<pre class=\"wp-block-code\"><code>cd<\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\" id=\"2-move-a-level-up\"><strong>2) Move a level up<\/strong><a href=\"https:\/\/kinsta.com\/blog\/linux-commands\/#2-move-a-level-up\"><\/a><\/h5>\n\n\n\n<pre class=\"wp-block-code\"><code>cd ..<\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\" id=\"3-return-to-the-previous-directory\"><strong>3) Return to the previous directory<\/strong><a href=\"https:\/\/kinsta.com\/blog\/linux-commands\/#3-return-to-the-previous-directory\"><\/a><\/h5>\n\n\n\n<pre class=\"wp-block-code\"><code>cd -<\/code><\/pre>\n\n\n\n<p>The\u00a0<strong>cd command<\/strong>\u00a0is used to navigate between directories. It requires either the full path or the directory name, depending on your current working directory. If you run this command without any options, it will take you to your home folder. Keep in mind that it can only be executed by users with\u00a0sudo\u00a0privileges.<\/p>\n\n\n\n<h3 id=\"6-mv-command\" class=\"wp-block-heading\"><strong>6. mv command<\/strong><\/h3>\n\n\n\n<p>You use the&nbsp;<code>mv<\/code>&nbsp;command to move (or rename) files and directories through your file system.<\/p>\n\n\n\n<p>To use this command, you\u2019d type its name with the source and destination files:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mv source_file destination_folder\/\n\nmv command_list.txt commands\/<\/code><\/pre>\n\n\n\n<p>To utilize absolute paths, you\u2019d use:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mv \/home\/kinsta\/BestMoviesOfAllTime .\/<\/code><\/pre>\n\n\n\n<p>\u2026where&nbsp;<code>.\/<\/code>&nbsp;is the directory you\u2019re currently in.<\/p>\n\n\n\n<p>You also can use&nbsp;<code>mv<\/code>&nbsp;to rename files while keeping them in the same directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mv old_file.txt new_named_file.txt<\/code><\/pre>\n\n\n\n<h3 id=\"7-rm-command\" class=\"wp-block-heading\"><strong>7. rm command<\/strong><\/h3>\n\n\n\n<p>You can use the&nbsp;<code>rm<\/code>&nbsp;command to remove files and directories. Be careful while using it, though, because it\u2019s very difficult (yet not impossible) to recover files deleted this way.<\/p>\n\n\n\n<p>To delete a regular file, you\u2019d type:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>rm file_to_copy.txt<\/code><\/pre>\n\n\n\n<p>If you want to delete an empty directory, you can use the recursive (<code>-r<\/code>) flag:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>rm -r dir_to_remove\/<\/code><\/pre>\n\n\n\n<p>On the other hand, to remove a directory with content inside of it, you need to use the force (-f) and recursive flags:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>rm -rf dir_with_content_to_remove\/<\/code><\/pre>\n\n\n\n<p>The\u00a0rm command\u00a0is used to delete permanently an empty directory. To perform this command the user running this command must have\u00a0sudo\u00a0privileges in the parent directory.\u00a0<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-8-man-command\"><span id=\"8-man-command\"><strong>8. man command<\/strong><a href=\"https:\/\/kinsta.com\/blog\/linux-commands\/#10-man-command\"><\/a><\/span><\/h3>\n\n\n\n<p>Another basic Linux command is\u00a0<code>man<\/code>. It displays the manual page of any other command (as long as it has one).<\/p>\n\n\n\n<p>To see the manual page of the&nbsp;<code>mkdir<\/code>&nbsp;command, type:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>man mkdir<\/code><\/pre>\n\n\n\n<p>You could even refer to the&nbsp;<code>man<\/code>&nbsp;manual page:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>man man<\/code><\/pre>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\" id=\"attachment_102312\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/kinsta.com\/wp-content\/uploads\/2021\/08\/Man-command.png?w=1200&#038;ssl=1\" alt=\"\" class=\"wp-image-102312\" \/><figcaption class=\"wp-element-caption\">The manual page of \u201cman.\u201d<\/figcaption><\/figure><\/div>\n\n\n<h3 class=\"wp-block-heading\" id=\"h-9-alias-command\"><span id=\"9-alias-command\"><strong>9. alias command<\/strong><a href=\"https:\/\/kinsta.com\/blog\/linux-commands\/#2-alias-command\"><\/a><\/span><\/h3>\n\n\n\n<p>The&nbsp;<code>alias<\/code>&nbsp;command lets you define temporary aliases in your shell session. When creating an alias, you instruct your shell to replace a word with a series of commands.<\/p>\n\n\n\n<p>For example, to set&nbsp;<code>ls<\/code>&nbsp;to have color without typing the&nbsp;<code>--color<\/code>&nbsp;flag every time, you would use:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>alias ls=\"ls --color=auto\"<\/code><\/pre>\n\n\n\n<p>As you can see, the&nbsp;<code>alias<\/code>&nbsp;command takes one key-value pair parameter:&nbsp;<code>alias NAME=\"VALUE\"<\/code>. Note that the value must be inside quotes.<\/p>\n\n\n\n<p>If you want to list all the aliases you have in your shell session, you can run the&nbsp;<code>alias<\/code>&nbsp;command without argument.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>alias<\/code><\/pre>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\" id=\"attachment_102311\"><img data-recalc-dims=\"1\" height=\"460\" width=\"1024\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/kinsta.com\/wp-content\/uploads\/2021\/08\/alias-command-1024x460.png?resize=1024%2C460&#038;ssl=1\" alt=\"\" class=\"wp-image-102311\" \/><figcaption class=\"wp-element-caption\">The alias command.<\/figcaption><\/figure><\/div>\n\n\n<h3 class=\"wp-block-heading\" id=\"h-10-unalias-command\"><span id=\"10-unalias-command\"><strong>10. unalias command<\/strong><a href=\"https:\/\/kinsta.com\/blog\/linux-commands\/#3-unalias-command\"><\/a><\/span><\/h3>\n\n\n\n<p>As the name suggests, the\u00a0<code>unalias<\/code>\u00a0command aims to remove an\u00a0<code>alias<\/code>\u00a0from the already defined aliases. To remove the previous\u00a0<code>ls<\/code>\u00a0alias, you can use:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>unalias ls<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-11-chmode-command\"><span id=\"11-chmode-command\"><strong>11. chmode command<\/strong><a href=\"https:\/\/kinsta.com\/blog\/linux-commands\/#12-chmod-command\"><\/a><\/span><\/h3>\n\n\n\n<p>The\u00a0<code>chmod<\/code>\u00a0command lets you change a file&#8217;s\u00a0mode\u00a0(permissions) quickly. It has a lot of options available with it. The basic permissions a file can have are:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>r (read)<\/li>\n\n\n\n<li>w (write)<\/li>\n\n\n\n<li>x (execute)<\/li>\n<\/ul>\n\n\n\n<p>One of the most common use cases for&nbsp;<code>chmod<\/code>&nbsp;is to make a file executable by the user. To do this, type&nbsp;<code>chmod<\/code>&nbsp;and the flag&nbsp;<code>+x<\/code>, followed by the file you want to modify permissions on:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>chmod +x script<\/code><\/pre>\n\n\n\n<p>You use this to make scripts executable, allowing you to run them directly by using the\u00a0<code>.\/<\/code>\u00a0notation.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-12-command\"><span id=\"12-command\"><strong>12. <code>.\/<\/code>\u00a0Command<\/strong><a href=\"https:\/\/kinsta.com\/blog\/linux-commands\/#13--command\"><\/a><\/span><\/h3>\n\n\n\n<p>Maybe the&nbsp;<code>.\/<\/code>&nbsp;notation isn\u2019t a command itself, but it\u2019s worth mentioning in this list. It lets your shell run an executable file with any interpreter installed in your system directly from the terminal. No more double-clicking a file in a graphical file manager!<\/p>\n\n\n\n<p>For instance, with this command, you can run a\u00a0Python script\u00a0or a program only available in .run format, like\u00a0XAMPP. When running an executable, make sure it has executable (x) permissions, which you can modify with the\u00a0<code>chmod<\/code>\u00a0command.<\/p>\n\n\n\n<p>Here\u2019s a simple Python script and how we would run it with the&nbsp;<code>.\/<\/code>&nbsp;notation:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\n#! \/usr\/bin\/python3\n\n# filename: script\n\nfor i in range(20):\n\nprint(f\"This is a cool script {i}\")<\/code><\/pre>\n\n\n\n<p>Here\u2019s how we\u2019d convert the script into an executable and run it:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>chmod +x script\n\n.\/script<\/code><\/pre>\n\n\n\n<h3 id=\"13-uname-command\" class=\"wp-block-heading\"><strong>13. uname command<\/strong><\/h3>\n\n\n\n<p>The\u00a0<code>uname<\/code> command\u00a0is used to check the complete OS information of the system. Check out the command and the output below<\/p>\n\n\n\n<p><strong>Command:&nbsp;<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/media.geeksforgeeks.org\/wp-content\/uploads\/20230104001613\/inp.png?w=1200&#038;ssl=1\" alt=\"uname command in linux\" \/><\/figure>\n\n\n\n<p><strong>Output:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/media.geeksforgeeks.org\/wp-content\/uploads\/20230104001635\/on.png?w=1200&#038;ssl=1\" alt=\"output of uname command in linux\" \/><\/figure>\n\n\n\n<h3 id=\"14-locate-command\" class=\"wp-block-heading\"><strong>14. locate command<\/strong><\/h3>\n\n\n\n<p>The\u00a0<code>locate<\/code> command\u00a0is generally used to locate the files in the database. Use an asterisk (*) to search for content that contains two or more words. As an example:\u00a0<strong>locate first*file.\u00a0<\/strong>This command will search the database for the files that contain these two names\u00a0<strong>first\u00a0<\/strong>and\u00a0<strong>file.<\/strong><\/p>\n\n\n\n<p><strong>Command:&nbsp;<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/media.geeksforgeeks.org\/wp-content\/uploads\/20230104001916\/inp.png?w=1200&#038;ssl=1\" alt=\"locate command in linux\" \/><\/figure>\n\n\n\n<p><strong>Output:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/media.geeksforgeeks.org\/wp-content\/uploads\/20230104001940\/OP.png?w=1200&#038;ssl=1\" alt=\"output of locate command in linux\" \/><\/figure>\n\n\n\n<p>We first used the\u00a0<strong>rm\u00a0<\/strong>command to delete the file and then used\u00a0<strong>locate\u00a0<\/strong>command to find the file in the database which in return has given the output with a<strong>\u00a0-e<\/strong>\u00a0as the file was removed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-15-exit-command\"><span id=\"15-exit-command\"><strong>15. <code>exit<\/code>\u00a0Command<\/strong><a href=\"https:\/\/kinsta.com\/blog\/linux-commands\/#14-exit-command\"><\/a><\/span><\/h3>\n\n\n\n<p>The\u00a0<code>exit<\/code>\u00a0command does exactly what its name suggests: With it, you can end a shell session and, in most cases, automatically close\u00a0the terminal\u00a0you\u2019re using:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>exit<\/code><\/pre>\n\n\n\n<h3 id=\"16-ln-command\" class=\"wp-block-heading\"><strong>16. ln command<\/strong><\/h3>\n\n\n\n<p>The\u00a0<code>ln<\/code> command\u00a0is used to create a shortcut link to another file. This is among the most important Linux commands to know if you want to operate as a Linux administrator.<\/p>\n\n\n\n<p><strong>Command:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/media.geeksforgeeks.org\/wp-content\/uploads\/20230104003235\/inp.png?w=1200&#038;ssl=1\" alt=\"\" \/><\/figure>\n\n\n\n<p><strong>Output:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/media.geeksforgeeks.org\/wp-content\/uploads\/20230104003256\/op.png?w=1200&#038;ssl=1\" alt=\"output of ln command in linux\" \/><\/figure>\n\n\n\n<p>Here we used&nbsp;<strong>mkdir&nbsp;<\/strong>to create two directories and then we used&nbsp;<strong>ln&nbsp;<\/strong>with an&nbsp;<strong>-s<\/strong>&nbsp;to create a soft link in it.<\/p>\n\n\n\n<h3 id=\"17-cat-command\" class=\"wp-block-heading\">17. cat command<\/h3>\n\n\n\n<p>The\u00a0<code>cat<\/code> command\u00a0is the simplest command to use when you want to see the contents of a particular file.\u00a0The only issue is that it simply unloads the entire file to your terminal. If you want to navigate around a huge file, you can use\u00a0<code>less<\/code><strong>\u00a0<\/strong>command alternatively.<\/p>\n\n\n\n<p><strong>Command:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/media.geeksforgeeks.org\/wp-content\/uploads\/20230104005659\/inp.png?w=1200&#038;ssl=1\" alt=\"\" \/><\/figure>\n\n\n\n<p><strong>Output:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/media.geeksforgeeks.org\/wp-content\/uploads\/20230104005716\/oup.png?w=1200&#038;ssl=1\" alt=\"output of cat command in linux\" \/><\/figure>\n\n\n\n<h3 id=\"18-touch-command\" class=\"wp-block-heading\"><strong>18. touch command<\/strong><\/h3>\n\n\n\n<p>The\u00a0<code>touch<\/code> command\u00a0creates an empty file when put in the terminal in this format as touch\u00a0<strong>&lt;file name&gt;\u00a0<\/strong><\/p>\n\n\n\n<p><strong>Command:&nbsp;<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/media.geeksforgeeks.org\/wp-content\/uploads\/20230104002321\/inp.png?w=1200&#038;ssl=1\" alt=\"touch command in linux\" \/><\/figure>\n\n\n\n<p><strong>Output:&nbsp;<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/media.geeksforgeeks.org\/wp-content\/uploads\/20230104002341\/op.png?w=1200&#038;ssl=1\" alt=\"\" \/><\/figure>\n\n\n\n<p>We used the\u00a0<strong>ls\u00a0<\/strong>command to check the current directories in the terminal and then used the\u00a0<strong>touch\u00a0<\/strong>command to create an empty file and then again we used\u00a0<strong>ls\u00a0<\/strong>to find out the created file in the terminal.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-19-sudo-command\"><span id=\"19-sudo-command\"><strong>19. sudo\u00a0Command<\/strong><a href=\"https:\/\/kinsta.com\/blog\/linux-commands\/#15-sudo-command\"><\/a><\/span><\/h3>\n\n\n\n<p>This command stands for \u201csuperuser do,\u201d and it lets you act as a superuser or root user while you\u2019re running a specific command. It\u2019s how Linux protects itself and prevents users from accidentally modifying the machine\u2019s filesystem or installing inappropriate packages.<\/p>\n\n\n\n<p><code>Sudo<\/code> is commonly used to install software or to edit files outside the user\u2019s home directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install gimp\n\nsudo cd \/root\/ <\/code><\/pre>\n\n\n\n<p>It\u2019ll ask you for the administrator\u2019s password before running the command you typed after it.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"16-shutdown-command\"><span id=\"20-shutdown-command\"><strong>20. shutdown\u00a0Command<\/strong><a href=\"https:\/\/kinsta.com\/blog\/linux-commands\/#16-shutdown-command\"><\/a><\/span><\/h3>\n\n\n\n<p>As you may guess, the&nbsp;<code>shutdown<\/code>&nbsp;command lets you power off your machine. However, it also can be used to halt and reboot it.<\/p>\n\n\n\n<p>To power off your computer immediately (the default is one minute), type:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>shutdown now<\/code><\/pre>\n\n\n\n<p>You can also schedule to turn off your system in a 24-hour format:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>shutdown 20:40<\/code><\/pre>\n\n\n\n<p>To cancel a previous&nbsp;<code>shutdown<\/code>&nbsp;call, you can use the&nbsp;<code>-c<\/code>&nbsp;flag:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>shutdown -c<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-recommended-articles\"><span id=\"recommended-articles\"><strong>Recommended Articles <\/strong><\/span><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/businessyield.com\/tech\/technology\/provisioning-in-it-software-what-does-it-mean\/\">Provisioning In IT Software: What Does It Mean?<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/businessyield.com\/tech\/technology\/python-cryptography\/\">Python Cryptography: Ultimate Beginners Guide<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/businessyield.com\/tech\/technology\/create-git-repository\/\">How To Create a Git Repository [New or Existing Projects]<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/businessyield.com\/tech\/technology\/citrix-server-what-is-it-and-how-does-it-work\/\">Citrix Server: What Is It and How Does It Work?<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/businessyield.com\/tech\/technology\/what-is-a-digital-footprint\/\">What is Digital Footprint: Definition, How to Manage &amp; Protect Yours<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/businessyield.com\/tech\/technology\/binary-code\/\">Binary Code: What Is It &amp; How Is It Useful in Computing?<\/a><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-references\"><span id=\"references\"><strong>References<\/strong><\/span><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/www.digitalocean.com\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Digital Ocean<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.geeksforgeeks.org\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">GeeksforGeeks<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/kinsta.com\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Kinsta<\/a><\/li>\n<\/ul>\n","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"excerpt":{"rendered":"As a beginner, you must be familiar with basic Linux commands to complete an operation. This is because,&hellip;\n","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"author":290,"featured_media":15608,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[35],"tags":[],"class_list":{"0":"post-15605","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-technology"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>20 Basic Linux Commands With Examples: A Beginner&#039;s Guide - Business Yield Technology<\/title>\n<meta name=\"description\" content=\"As a beginner, you must be familiar with basic Linux commands to complete an operation, as shortcuts help us to complete a task quickly.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"20 Basic Linux Commands With Examples: A Beginner&#039;s Guide - Business Yield Technology\" \/>\n<meta property=\"og:description\" content=\"As a beginner, you must be familiar with basic Linux commands to complete an operation, as shortcuts help us to complete a task quickly.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"Business Yield Technology\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/Jay.Arnis\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-24T20:18:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-24T20:18:56+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/businessyield.com\/tech\/wp-content\/uploads\/sites\/2\/2023\/11\/Untitled-design-18.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"667\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jimmy Anisulowo\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/forlahjay\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jimmy Anisulowo\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"12 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/\",\"url\":\"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/\",\"name\":\"20 Basic Linux Commands With Examples: A Beginner's Guide - Business Yield Technology\",\"isPartOf\":{\"@id\":\"https:\/\/businessyield.com\/tech\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/businessyield.com\/tech\/wp-content\/uploads\/sites\/2\/2023\/11\/Untitled-design-18.jpg?fit=1000%2C667&ssl=1\",\"datePublished\":\"2023-11-24T20:18:53+00:00\",\"dateModified\":\"2023-11-24T20:18:56+00:00\",\"author\":{\"@id\":\"https:\/\/businessyield.com\/tech\/#\/schema\/person\/0f5b3b62b69726a967e6d217a4d242ff\"},\"description\":\"As a beginner, you must be familiar with basic Linux commands to complete an operation, as shortcuts help us to complete a task quickly.\",\"breadcrumb\":{\"@id\":\"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/businessyield.com\/tech\/wp-content\/uploads\/sites\/2\/2023\/11\/Untitled-design-18.jpg?fit=1000%2C667&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/businessyield.com\/tech\/wp-content\/uploads\/sites\/2\/2023\/11\/Untitled-design-18.jpg?fit=1000%2C667&ssl=1\",\"width\":1000,\"height\":667,\"caption\":\"Image by Freepik\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/businessyield.com\/tech\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"20 Basic Linux Commands With Examples: A Beginner&#8217;s Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/businessyield.com\/tech\/#website\",\"url\":\"https:\/\/businessyield.com\/tech\/\",\"name\":\"Business Yield Technology\",\"description\":\"Best Tech Reviews, Apps, Phones, &amp; Gaming\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/businessyield.com\/tech\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/businessyield.com\/tech\/#\/schema\/person\/0f5b3b62b69726a967e6d217a4d242ff\",\"name\":\"Jimmy Anisulowo\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/businessyield.com\/tech\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b20d2d093f1362590dc5b5f8b8cfb36e53decf98e57d0121be53eb533dc1f2a7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b20d2d093f1362590dc5b5f8b8cfb36e53decf98e57d0121be53eb533dc1f2a7?s=96&d=mm&r=g\",\"caption\":\"Jimmy Anisulowo\"},\"description\":\"Jimmy generally lives his life by one dogma: steady improvement. This has taken him on a relentless pursuit of knowledge in diverse fields such as business, tech, insurance, health and many others. With a background in content creation and digital marketing plus over ten years of writing and research experience, he implements an expert's view to help his audiences gain valuable insight. He is also an avid reader, gamer, drummer, full-blown metalhead, and all-round fun gi.\",\"sameAs\":[\"https:\/\/www.facebook.com\/Jay.Arnis\",\"https:\/\/www.instagram.com\/forlahjay\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/forlahjay\"],\"url\":\"https:\/\/businessyield.com\/tech\/author\/jimmy\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"20 Basic Linux Commands With Examples: A Beginner's Guide - Business Yield Technology","description":"As a beginner, you must be familiar with basic Linux commands to complete an operation, as shortcuts help us to complete a task quickly.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/","og_locale":"en_US","og_type":"article","og_title":"20 Basic Linux Commands With Examples: A Beginner's Guide - Business Yield Technology","og_description":"As a beginner, you must be familiar with basic Linux commands to complete an operation, as shortcuts help us to complete a task quickly.","og_url":"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/","og_site_name":"Business Yield Technology","article_author":"https:\/\/www.facebook.com\/Jay.Arnis","article_published_time":"2023-11-24T20:18:53+00:00","article_modified_time":"2023-11-24T20:18:56+00:00","og_image":[{"width":1000,"height":667,"url":"http:\/\/businessyield.com\/tech\/wp-content\/uploads\/sites\/2\/2023\/11\/Untitled-design-18.jpg","type":"image\/jpeg"}],"author":"Jimmy Anisulowo","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/forlahjay","twitter_misc":{"Written by":"Jimmy Anisulowo","Est. reading time":"12 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/","url":"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/","name":"20 Basic Linux Commands With Examples: A Beginner's Guide - Business Yield Technology","isPartOf":{"@id":"https:\/\/businessyield.com\/tech\/#website"},"primaryImageOfPage":{"@id":"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/#primaryimage"},"image":{"@id":"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/businessyield.com\/tech\/wp-content\/uploads\/sites\/2\/2023\/11\/Untitled-design-18.jpg?fit=1000%2C667&ssl=1","datePublished":"2023-11-24T20:18:53+00:00","dateModified":"2023-11-24T20:18:56+00:00","author":{"@id":"https:\/\/businessyield.com\/tech\/#\/schema\/person\/0f5b3b62b69726a967e6d217a4d242ff"},"description":"As a beginner, you must be familiar with basic Linux commands to complete an operation, as shortcuts help us to complete a task quickly.","breadcrumb":{"@id":"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/#primaryimage","url":"https:\/\/i0.wp.com\/businessyield.com\/tech\/wp-content\/uploads\/sites\/2\/2023\/11\/Untitled-design-18.jpg?fit=1000%2C667&ssl=1","contentUrl":"https:\/\/i0.wp.com\/businessyield.com\/tech\/wp-content\/uploads\/sites\/2\/2023\/11\/Untitled-design-18.jpg?fit=1000%2C667&ssl=1","width":1000,"height":667,"caption":"Image by Freepik"},{"@type":"BreadcrumbList","@id":"https:\/\/businessyield.com\/tech\/technology\/20-basic-linux-commands-with-examples-a-beginners-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/businessyield.com\/tech\/"},{"@type":"ListItem","position":2,"name":"20 Basic Linux Commands With Examples: A Beginner&#8217;s Guide"}]},{"@type":"WebSite","@id":"https:\/\/businessyield.com\/tech\/#website","url":"https:\/\/businessyield.com\/tech\/","name":"Business Yield Technology","description":"Best Tech Reviews, Apps, Phones, &amp; Gaming","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/businessyield.com\/tech\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/businessyield.com\/tech\/#\/schema\/person\/0f5b3b62b69726a967e6d217a4d242ff","name":"Jimmy Anisulowo","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/businessyield.com\/tech\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b20d2d093f1362590dc5b5f8b8cfb36e53decf98e57d0121be53eb533dc1f2a7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b20d2d093f1362590dc5b5f8b8cfb36e53decf98e57d0121be53eb533dc1f2a7?s=96&d=mm&r=g","caption":"Jimmy Anisulowo"},"description":"Jimmy generally lives his life by one dogma: steady improvement. This has taken him on a relentless pursuit of knowledge in diverse fields such as business, tech, insurance, health and many others. With a background in content creation and digital marketing plus over ten years of writing and research experience, he implements an expert's view to help his audiences gain valuable insight. He is also an avid reader, gamer, drummer, full-blown metalhead, and all-round fun gi.","sameAs":["https:\/\/www.facebook.com\/Jay.Arnis","https:\/\/www.instagram.com\/forlahjay\/","https:\/\/x.com\/https:\/\/twitter.com\/forlahjay"],"url":"https:\/\/businessyield.com\/tech\/author\/jimmy\/"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/businessyield.com\/tech\/wp-content\/uploads\/sites\/2\/2023\/11\/Untitled-design-18.jpg?fit=1000%2C667&ssl=1","jetpack_sharing_enabled":true,"gt_translate_keys":[{"key":"link","format":"url"}],"_links":{"self":[{"href":"https:\/\/businessyield.com\/tech\/wp-json\/wp\/v2\/posts\/15605","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/businessyield.com\/tech\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/businessyield.com\/tech\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/businessyield.com\/tech\/wp-json\/wp\/v2\/users\/290"}],"replies":[{"embeddable":true,"href":"https:\/\/businessyield.com\/tech\/wp-json\/wp\/v2\/comments?post=15605"}],"version-history":[{"count":1,"href":"https:\/\/businessyield.com\/tech\/wp-json\/wp\/v2\/posts\/15605\/revisions"}],"predecessor-version":[{"id":15610,"href":"https:\/\/businessyield.com\/tech\/wp-json\/wp\/v2\/posts\/15605\/revisions\/15610"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/businessyield.com\/tech\/wp-json\/wp\/v2\/media\/15608"}],"wp:attachment":[{"href":"https:\/\/businessyield.com\/tech\/wp-json\/wp\/v2\/media?parent=15605"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/businessyield.com\/tech\/wp-json\/wp\/v2\/categories?post=15605"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/businessyield.com\/tech\/wp-json\/wp\/v2\/tags?post=15605"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}