{"id":60,"date":"2020-10-01T22:48:18","date_gmt":"2020-10-01T22:48:18","guid":{"rendered":"https:\/\/linuxways.net\/?p=60"},"modified":"2020-10-15T10:19:30","modified_gmt":"2020-10-15T10:19:30","slug":"how-to-use-wc-command-in-ubuntu-20-04-lts","status":"publish","type":"post","link":"https:\/\/linuxways.net\/de\/ubuntu\/how-to-use-wc-command-in-ubuntu-20-04-lts\/","title":{"rendered":"wc command: Explained with 5 examples in Ubuntu 20.04 LTS"},"content":{"rendered":"<p>The wc (word count) command is one of the GNU core utilities that apparently look simple but is actually quite a useful command. As apparent from the name, it counts the number of lines, words, characters, bytes, and even the length of the longest line in the file and prints them to standard output. You may need this count for multiple reasons. For example, you can use the character count to restrict the number of characters that can be inserted in a post. Similarly, you can count the number of users on your system, the number of packages installed on your system, etc.<\/p>\n\n\n\n<p>In this article, we will explain how to use wc command in Linux along with its command-line options and some examples.<\/p>\n\n\n\n<p>We have performed the commands on Ubuntu 20.04 Focal Fossa system. More or less the same commands can also be implemented on other Linux distributions. We have run the commands on default Terminal application which can be accessed through Ctrl+Alt+T keyboard shortcut.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Syntax<\/h2>\n\n\n\n<p>Here is the basic syntax for the wc command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>wc [OPTION]... [FILE]...<\/strong><\/pre>\n\n\n\n<p>If you want to use multiple options, you can add them without a space. While for multiple files, you should separate them by a single space.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Basic usage of wc command<\/h2>\n\n\n\n<p>When wc command is used without any command-line options, it returns the number of lines, words, and bytes in the files. In order to use the wc command, simply type <em>wc<\/em> followed by the file name you want to find the count for.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ wc testfile.txt<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"500\" height=\"73\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-21.png\" alt=\"\" class=\"wp-image-73\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-21.png 500w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-21-300x44.png 300w\" sizes=\"auto, (max-width: 500px) 100vw, 500px\" \/><\/figure>\n\n\n\n<p><strong>Output explained: <\/strong><\/p>\n\n\n\n<p>The wc command print the count results for the specified file in four columns. The first column shows the number of lines in the file, the second column shows the number of words, the third column shows the number of bytes and the fourth column shows the filename.<\/p>\n\n\n\n<p>Note: wc only prints the newline counts not the actual lines in the specified file.<\/p>\n\n\n\n<p>In the above command output, 12 is the number of lines, 21 is the number of words, and 116 is the number of bytes in the \u201ctestfile.txt\u201d.<\/p>\n\n\n\n<p>If you do not want to print the file name in the result, use &lt; with the wc command as follows:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ wc &lt; testfile.txt<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Count from multiple files<\/h2>\n\n\n\n<p>With wc command, you can specify multiple files for the count. The wc command returns the count for each of the file along with the total count in the end which is the sum of the count for each file.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"516\" height=\"120\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-22.png\" alt=\"\" class=\"wp-image-74\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-22.png 516w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-22-300x70.png 300w\" sizes=\"auto, (max-width: 516px) 100vw, 516px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Options<\/h2>\n\n\n\n<p>The wc command has some command-line options. Let\u2019s have a look at those options and their functions:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Count the Number of Lines<\/h3>\n\n\n\n<p>Using wc command with <strong>-l<\/strong> or <strong>&#8211;lines<\/strong> option, you can print just the number of lines in the file. For instance, the following command will print only the line count in the \u201ctestfile.txt\u201d:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ wc -l testfile.txt<\/pre>\n\n\n\n<p>In the following output, 12 is the number of lines in the \u201ctestfile.txt\u201d.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"464\" height=\"72\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-23.png\" alt=\"\" class=\"wp-image-75\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-23.png 464w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-23-300x47.png 300w\" sizes=\"auto, (max-width: 464px) 100vw, 464px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Count the Number of Words<\/h3>\n\n\n\n<p>If you need to print only the word count in a file, use the wc command with <strong>-w<\/strong> or <strong>&#8211;words<\/strong> option. For instance, the following command will print the word count in the \u201ctestfile.txt\u201d:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ wc -w testfile.txt<\/pre>\n\n\n\n<p>In the following output, 21 is the number of words in the \u201ctestfile.txt\u201d.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"455\" height=\"72\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-24.png\" alt=\"\" class=\"wp-image-76\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-24.png 455w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-24-300x47.png 300w\" sizes=\"auto, (max-width: 455px) 100vw, 455px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Count the number of bytes<\/h3>\n\n\n\n<p>Using wc command with <strong>-c<\/strong> or <strong>&#8211;bytes<\/strong> option, you can print the number of bytes in the file. The following command will print the byte count in the \u201ctestfile.txt\u201d:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ wc -c testfile.txt<\/pre>\n\n\n\n<p>In the following output, 116 is the number of bytes in the \u201ctestfile.txt\u201d.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><img loading=\"lazy\" decoding=\"async\" width=\"505\" height=\"71\" class=\"wp-image-77\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-25.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-25.png 505w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-25-300x42.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-25-501x71.png 501w\" sizes=\"auto, (max-width: 505px) 100vw, 505px\" \/><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Count the Number of Characters<\/h3>\n\n\n\n<p>Using wc command with <strong>-m<\/strong> or <strong>&#8211;chars<\/strong> option, you can print the number of characters in the file. For instance, the following command will print only the character count in the \u201ctestfile.txt\u201d:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ wc -m testfile.txt<\/pre>\n\n\n\n<p>In the following output, 116 is the number of characters in the testfile.txt.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><img loading=\"lazy\" decoding=\"async\" width=\"512\" height=\"70\" class=\"wp-image-78\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-26.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-26.png 512w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-26-300x41.png 300w\" sizes=\"auto, (max-width: 512px) 100vw, 512px\" \/><\/h2>\n\n\n\n<p>Note: The byte count and character count are same for the files in ASCII format.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Print Length of the Longest Line<\/h3>\n\n\n\n<p>If you need to print length of the longest line in a specific file, you can do so using wc command with <strong>-L<\/strong> or <strong>&#8211;max-line-length <\/strong>option. For instance, the following command will print the length of the longest line of the \u201ctestfile.txt\u201d:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ wc -L testfile.txt<\/pre>\n\n\n\n<p>In the following output, 20 is the length of the longest line.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><img loading=\"lazy\" decoding=\"async\" width=\"467\" height=\"73\" class=\"wp-image-79\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-27.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-27.png 467w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-27-300x47.png 300w\" sizes=\"auto, (max-width: 467px) 100vw, 467px\" \/><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">View version<\/h3>\n\n\n\n<p>In order to view the version of wc command, use the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ wc --version<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"869\" height=\"208\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-28.png\" alt=\"\" class=\"wp-image-80\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-28.png 869w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-28-300x72.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-28-768x184.png 768w\" sizes=\"auto, (max-width: 869px) 100vw, 869px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Print number of lines and bytes<\/h3>\n\n\n\n<p>You can also combine the command-line options. For instance, to print the line and byte count, combine -l and -c options as follows:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ wc -lc<\/pre>\n\n\n\n<p>Note: Whether you run -lc or -cl, the output will always be in the same order i.e. line, word, and byte count.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"447\" height=\"145\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-29.png\" alt=\"\" class=\"wp-image-81\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-29.png 447w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-29-300x97.png 300w\" sizes=\"auto, (max-width: 447px) 100vw, 447px\" \/><\/figure>\n\n\n\n<p>In the above output, 29 is the line count and 782 is the byte count in the file \u201csample.txt\u201d.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Store count in a file<\/h3>\n\n\n\n<p>In order to save the output of wc command in a file, use the &gt; operator as follows:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ wc sample.txt &gt; file_count<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Wc Command Usage Example<\/h2>\n\n\n\n<p>Let\u2019s look at some of the examples of wc command by piping it with other commands.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Counting Files in any Directory<\/h3>\n\n\n\n<p>To count the number of files in any directory, pipe the output of find command to wc. For instance, to find the number of files in the ~\/Downloads directory, the command would be:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ find ~\/Downloads\/ -type f | wc -l<\/pre>\n\n\n\n<p>The find command lists all the files in the ~\/Downloads directory of your system which is then piped to the wc command to get a count.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"579\" height=\"72\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-30.png\" alt=\"\" class=\"wp-image-82\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-30.png 579w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-30-300x37.png 300w\" sizes=\"auto, (max-width: 579px) 100vw, 579px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Count the number of users<\/h3>\n\n\n\n<p>The wc command can also be used to count the total number of users in a system. To count the number of users, use the &#8216;getent passwd&#8217; command and pipe its output to wc command as follows:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ getent passwd | wc \u2013l<\/pre>\n\n\n\n<p>The &#8216;getent passwd&#8217; command list all the users in the system which is then piped to the wc command to get a count.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"480\" height=\"76\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-31.png\" alt=\"\" class=\"wp-image-83\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-31.png 480w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-31-300x48.png 300w\" sizes=\"auto, (max-width: 480px) 100vw, 480px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Count number of installed packages<\/h3>\n\n\n\n<p>With the wc command, you can also count the number of installed packages in your system. To count the number of installed packages, use the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ apt list --installed | wc -l<\/pre>\n\n\n\n<p>The &#8216;apt list &#8211;installed&#8221; command list all the installed packages in the system which is then piped to the wc command to get a count.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"605\" height=\"162\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-32.png\" alt=\"\" class=\"wp-image-84\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-32.png 605w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-32-300x80.png 300w\" sizes=\"auto, (max-width: 605px) 100vw, 605px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Count number of particular word in a file<\/h3>\n\n\n\n<p>With the wc command, you can count number of particular word in a file. For instance, to find how many times the word &#8220;science&#8221; appeared in the file named &#8220;sample.txt&#8221;, the command would be:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ grep -o \u2018science\u2019 sample.txt | wc -w<\/pre>\n\n\n\n<p>In this example, the grep command searches for the occurrence of the word &#8220;science&#8221; in the sample.txt file which is then piped to wc command to get a count.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"617\" height=\"73\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-33.png\" alt=\"\" class=\"wp-image-85\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-33.png 617w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-33-300x35.png 300w\" sizes=\"auto, (max-width: 617px) 100vw, 617px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Count number of characters in a specific line<\/h3>\n\n\n\n<p>With the wc command, you can also find the number of characters in a specific line. For instance, to find the number of characters in line <strong>50<\/strong> of the file named &#8220;sample.txt&#8221;, the command would be:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ head -50 sample.txt | tail -1 | wc -w<\/pre>\n\n\n\n<p>In this example, the <strong>head<\/strong> command will list the first 50 lines of the sample.txt file which is then piped to the tail command. The \u201c<strong>tail -1<\/strong>\u201d command then filters out the last line (Line No. 50) of the first output it obtained from the <strong>head<\/strong> command. The output from the <strong>tail<\/strong> command is then piped to the wc command to get a count of characters in line 50.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"622\" height=\"67\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-34.png\" alt=\"\" class=\"wp-image-86\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-34.png 622w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-34-300x32.png 300w\" sizes=\"auto, (max-width: 622px) 100vw, 622px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Use a Script for counting<\/h3>\n\n\n\n<p>In the following example, we will create a script that will count lines, words, and bytes in a file. When running the script, we will pass the file name as an argument, so that you can run the same script for any of your files.<\/p>\n\n\n\n<p>Create a script with the following lines of code:<\/p>\n\n\n<pre>#!\/bin\/bash\necho \"File to read:\"\nread file\necho \"\"\necho \"This file has the following number of:\"\necho -n \"Lines: \"\nwc -l &lt; $file\necho -n \"Words: \"\nwc -w &lt; $file\necho -n \"Chars: \"\nwc -c &lt; $file<\/pre>\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"711\" height=\"267\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-35.png\" alt=\"\" class=\"wp-image-87\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-35.png 711w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-35-300x113.png 300w\" sizes=\"auto, (max-width: 711px) 100vw, 711px\" \/><\/figure>\n\n\n\n<p>\nNow run the script by passing the file name as an argument.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ &lt;.\/script_name&gt; &lt;path\/to\/filename&gt;<\/pre>\n\n\n\n<p>For instance, to get the line, word, and character count for the file named &#8220;sample.txt\u201d, run the script by passing sample.txt as an argument:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ .\/script2 sample.txt<\/pre>\n\n\n\n<p>After running the script, you will receive the similar output showing you the word count for your file.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"537\" height=\"140\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-36.png\" alt=\"\" class=\"wp-image-88\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-36.png 537w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-36-300x78.png 300w\" sizes=\"auto, (max-width: 537px) 100vw, 537px\" \/><\/figure>\n\n\n\n<p>If the file is in some other location other than your current working directory, then mention the full path:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ .\/script2 \/etc\/passwd<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"537\" height=\"141\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-37.png\" alt=\"\" class=\"wp-image-89\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-37.png 537w, https:\/\/linuxways.net\/wp-content\/uploads\/2020\/10\/word-image-37-300x79.png 300w\" sizes=\"auto, (max-width: 537px) 100vw, 537px\" \/><\/figure>\n\n\n\n<p>This is how you can use the wc command in Linux. In this article, you have learned the basics of wc command along with its command-line options and few practical examples. Now you can easily count number of lines, words, characters and bytes in your files and in the output from other commands.<\/p>\n\n\n\n<p><\/p>","protected":false},"excerpt":{"rendered":"<p>The wc (word count) command is one of the GNU core utilities that apparently look simple but is actually quite a useful command. As apparent from the name,&hellip;<\/p>","protected":false},"author":1,"featured_media":92,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[7],"class_list":["post-60","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ubuntu","tag-wc-command"],"_links":{"self":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/posts\/60","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/comments?post=60"}],"version-history":[{"count":0,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/posts\/60\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/media\/92"}],"wp:attachment":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/media?parent=60"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/categories?post=60"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/tags?post=60"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}