<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Tetsuya Kojima</title>
    <description>The latest articles on DEV Community by Tetsuya Kojima (@tetsuyakojima).</description>
    <link>https://dev.to/tetsuyakojima</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F512721%2F4cf97e02-ecc7-4285-9238-8d0a98accf62.jpeg</url>
      <title>DEV Community: Tetsuya Kojima</title>
      <link>https://dev.to/tetsuyakojima</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tetsuyakojima"/>
    <language>en</language>
    <item>
      <title>Let's graduate GUI and Live in Terminal!!</title>
      <dc:creator>Tetsuya Kojima</dc:creator>
      <pubDate>Sat, 14 Nov 2020 08:45:48 +0000</pubDate>
      <link>https://dev.to/tetsuyakojima/let-s-graduate-gui-and-live-in-terminal-4jie</link>
      <guid>https://dev.to/tetsuyakojima/let-s-graduate-gui-and-live-in-terminal-4jie</guid>
      <description>&lt;p&gt;Hello there:)&lt;br&gt;
This is my first post!&lt;br&gt;
This article can help a person who is a beginner.&lt;br&gt;
Recently I live in iterm2 and I graduated GUI.&lt;br&gt;
So if you haven't tried CUI, this article is really helping for you!&lt;br&gt;
Let's get started!&lt;/p&gt;
&lt;h2&gt;
  
  
  Open the terminal
&lt;/h2&gt;

&lt;p&gt;first, please type ⌘ + space, so you can use the Spotlight function and then type the word "terminal"&lt;br&gt;
Can you see the black background application like this? It's the terminal that is CUI tool (I use iterm2 that's why the appearance is a little bit different but no problem!)&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--rutqhCx2--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/vmb3ziebjd96sykosm1t.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--rutqhCx2--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/vmb3ziebjd96sykosm1t.png" alt="スクリーンショット 2020-11-14 12.23.01"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  cd
&lt;/h2&gt;

&lt;p&gt;next type the word cd.&lt;br&gt;
"cd" means change directory.&lt;br&gt;
you can type cd directory name like this.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cd &lt;/span&gt;Desktop
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and then you can see like this.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;~/Desktop
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;this means you are on Desktop.&lt;/p&gt;

&lt;h2&gt;
  
  
  pwd
&lt;/h2&gt;

&lt;p&gt;pwd means print working directory&lt;br&gt;
just type pwd.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;pwd&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;you can see like this.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;/Users/your name/Desktop
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;if you confuse about where you are, you can type it.&lt;/p&gt;

&lt;h2&gt;
  
  
  mkdir
&lt;/h2&gt;

&lt;p&gt;next, please type the word mkdir.&lt;br&gt;
"mkdir" means make directory.&lt;br&gt;
please type mkdir directory name like this.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;mkdir &lt;/span&gt;sample_dir
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;you could make a new directory!&lt;/p&gt;

&lt;h2&gt;
  
  
  ls
&lt;/h2&gt;

&lt;p&gt;ls means list.&lt;br&gt;
you can see a list of directories and files.&lt;br&gt;
and you can check sample_dir is made like this.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;sample_dir xxx.txt yyy.txt zzz
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;(if many files appeared, please type clear.&lt;br&gt;
your screen is to be clean.)&lt;/p&gt;
&lt;h2&gt;
  
  
  touch
&lt;/h2&gt;

&lt;p&gt;touch means create a file.&lt;br&gt;
(To be accurate, it update timestamp)&lt;br&gt;
you can type like this&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;touch &lt;/span&gt;sample_file
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;you made a file and then please type ls&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;sample_dir sample_file xxx yyy zzz
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  mv
&lt;/h2&gt;

&lt;p&gt;mv means to move.&lt;br&gt;
you can move your file or directory.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;mv &lt;/span&gt;sample_file sample_dir/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;this sentence means mv [files you want to move] [destination]&lt;/p&gt;

&lt;p&gt;please type ls&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sample_dir xxx yyy zzz
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and then please type cd sample_dir and ls.&lt;/p&gt;

&lt;p&gt;you can see like this&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;sample_file
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;you could move the sample_file below the sample_dir!&lt;/p&gt;

&lt;p&gt;finally, you can type rm.&lt;br&gt;
rm means remove but take care!&lt;br&gt;
if you type this command, you can't be undone.&lt;br&gt;
please type carefully.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;rm &lt;/span&gt;sample_file
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and then type ls.&lt;br&gt;
you can see nothing.&lt;/p&gt;

&lt;p&gt;if you want to take a rest, please type exit.&lt;br&gt;
you can close the terminal!&lt;/p&gt;

&lt;p&gt;All right! this is a basic command of the unix system.&lt;br&gt;
please practice and then let's graduate GUI!&lt;br&gt;
Thank you for reading!&lt;br&gt;
if you like this post, please smash the like button and share it!&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>linux</category>
    </item>
  </channel>
</rss>
