<?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: Nivethithaa Saravanavel</title>
    <description>The latest articles on DEV Community by Nivethithaa Saravanavel (@nivethithaa_saravanavel_3).</description>
    <link>https://dev.to/nivethithaa_saravanavel_3</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%2F3537674%2F1dba268d-4a76-4d5b-9d80-4d236768224e.jpg</url>
      <title>DEV Community: Nivethithaa Saravanavel</title>
      <link>https://dev.to/nivethithaa_saravanavel_3</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nivethithaa_saravanavel_3"/>
    <language>en</language>
    <item>
      <title>Linux Commands — nohup, Zip &amp; Disk Management</title>
      <dc:creator>Nivethithaa Saravanavel</dc:creator>
      <pubDate>Thu, 09 Oct 2025 11:09:05 +0000</pubDate>
      <link>https://dev.to/nivethithaa_saravanavel_3/linux-commands-nohup-zip-disk-management-209b</link>
      <guid>https://dev.to/nivethithaa_saravanavel_3/linux-commands-nohup-zip-disk-management-209b</guid>
      <description>&lt;h2&gt;
  
  
  nohup and Background Process
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;nohup&lt;/strong&gt; (short for &lt;strong&gt;no hang up&lt;/strong&gt;) is used to run a command or program in the &lt;strong&gt;background&lt;/strong&gt;.  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The process &lt;strong&gt;continues even if you close the terminal tab&lt;/strong&gt;.
&lt;/li&gt;
&lt;li&gt; It &lt;strong&gt;stops when you shut down the system&lt;/strong&gt;.
&lt;/li&gt;
&lt;li&gt; Without &lt;code&gt;nohup&lt;/code&gt;, closing the terminal will &lt;strong&gt;terminate the process&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Common Commands
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Command&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;nohup program_file&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Runs the given program in the background.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;nohup program_file &amp;gt;&amp;gt; storing_file&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Runs the program in the *&lt;em&gt;background and stores the output in another file (&lt;code&gt;storing_file&lt;/code&gt;). *&lt;/em&gt;&lt;em&gt;(Press Enter twice to continue)&lt;/em&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;top&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Displays all currently running processes.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;ps&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Shows the status of active processes (&lt;strong&gt;Process Status&lt;/strong&gt;).&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;ps -aux&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Lists detailed information about all running processes.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;cat storing_file&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Displays the entire log content of a stored background process.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;tail -f storing_file&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Shows the last 10 lines and updates live as new logs appear.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;tail -10 storing_file&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Displays only the last 10 lines of the file.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;kill -9 process_id&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Forcefully stops a process using its &lt;strong&gt;process ID&lt;/strong&gt; (find it using &lt;code&gt;ps -aux&lt;/code&gt;).&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;grep file_name&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Searches for a matching pattern inside a specific file.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  Zip and Unzip Commands
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Command&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;sudo apt install zip&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Installs the &lt;code&gt;zip&lt;/code&gt; package.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;zip zip_name.zip file_name&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Compresses a single file.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;zip -r zip_name.zip folder_name&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Compresses a folder recursively (includes all sub-files and directories).&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;unzip zip_name.zip&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Extracts the contents of a zip file.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  Disk Commands
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Command&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;df -h&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Displays the disk space usage of all drives (in &lt;strong&gt;human-readable&lt;/strong&gt; format).&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;du -sh&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Shows how much disk space a particular file or directory uses.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;p&gt;&lt;strong&gt;Quick Summary&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Use &lt;code&gt;nohup&lt;/code&gt; to run programs in the background safely.
&lt;/li&gt;
&lt;li&gt;Use &lt;code&gt;ps&lt;/code&gt;, &lt;code&gt;top&lt;/code&gt;, and &lt;code&gt;kill&lt;/code&gt; to manage processes.
&lt;/li&gt;
&lt;li&gt;Use &lt;code&gt;zip&lt;/code&gt; and &lt;code&gt;unzip&lt;/code&gt; for file compression.
&lt;/li&gt;
&lt;li&gt;Use &lt;code&gt;df&lt;/code&gt; and &lt;code&gt;du&lt;/code&gt; to monitor disk usage.&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>programming</category>
      <category>beginners</category>
      <category>learning</category>
      <category>linux</category>
    </item>
    <item>
      <title>linux - cd,ls,Hard&amp;Soft Link</title>
      <dc:creator>Nivethithaa Saravanavel</dc:creator>
      <pubDate>Wed, 08 Oct 2025 08:50:02 +0000</pubDate>
      <link>https://dev.to/nivethithaa_saravanavel_3/linux-cdlshardsoft-link-330g</link>
      <guid>https://dev.to/nivethithaa_saravanavel_3/linux-cdlshardsoft-link-330g</guid>
      <description>&lt;h2&gt;
  
  
  Linux Basic Commands — &lt;code&gt;cd&lt;/code&gt;, &lt;code&gt;ls&lt;/code&gt;
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Change Directory (&lt;code&gt;cd&lt;/code&gt;)
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;strong&gt;Command&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Description&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Example/Notes&lt;/strong&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;cd /home/userName&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Moves to the user’s home directory.&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;cd ~/&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Shortcut for &lt;code&gt;/home/username&lt;/code&gt;.&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;mkdir demo&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Creates a new directory named &lt;code&gt;demo&lt;/code&gt;.&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;mkdir -p abc/cde/demo&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Creates nested directories recursively.&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;cd ..&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Moves out of the current directory (to the parent).&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;cd ../..&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Moves up two levels in the directory hierarchy.&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;cd&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Moves directly to the home directory.&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h3&gt;
  
  
  List Directory Contents (&lt;code&gt;ls&lt;/code&gt;)
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;strong&gt;Command&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Description&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Example/Notes&lt;/strong&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;ls&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Lists all files and directories.&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;ls -lstr&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Lists files with metadata (permissions, size, etc.) in sorted order.&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;ls -a&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Shows all files, including hidden ones (those starting with &lt;code&gt;.&lt;/code&gt;).&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;ls *end&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Lists files ending with “end”.&lt;/td&gt;
&lt;td&gt;Example: &lt;code&gt;ls *txt&lt;/code&gt; shows all files ending with &lt;code&gt;.txt&lt;/code&gt;.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;ls start*&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Lists files starting with “start”.&lt;/td&gt;
&lt;td&gt;Example: &lt;code&gt;ls demo*&lt;/code&gt; shows all files starting with “demo”.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  Hard link and soft link
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Hard Links
&lt;/h3&gt;



&lt;p&gt;&lt;code&gt;ln original_file new_named_file&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;h4&gt;
  
  
  Explanation:
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;B*&lt;em&gt;oth files point to the same data&lt;/em&gt;* on disk.&lt;/li&gt;
&lt;li&gt;Changes made in one file affect the other.&lt;/li&gt;
&lt;li&gt;Deleting one file does not affect the other, as the data still exists as long as one link remains&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Soft Links (Symbolic Links)
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Command:
&lt;/h4&gt;



&lt;p&gt;&lt;code&gt;ln -s original_file demo_file&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;h4&gt;
  
  
  Explanation:
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;The soft &lt;strong&gt;link points to the path of the original file&lt;/strong&gt;, not the data itself.&lt;/li&gt;
&lt;li&gt;If the original file is deleted, the soft link becomes broken (it remains but points to nothing).&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Aliases
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Definition:
&lt;/h4&gt;

&lt;p&gt;An alias is a shortcut that allows you to assign a** short name **to a long command or path.&lt;/p&gt;

&lt;h4&gt;
  
  
  Example:
&lt;/h4&gt;



&lt;p&gt;&lt;code&gt;alias sh="/home/nive/demo/test/abc/"&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;Now, typing sh will take you to /home/nive/demo/test/abc/.&lt;/p&gt;

&lt;p&gt;Important Notes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;This alias works only for the current terminal session.&lt;/li&gt;
&lt;li&gt;To make it permanent, add it to the ~/.bashrc
file, then run:
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;code&gt;source ~/.bashrc&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;To make it permanent, add it to the ~/.bashrc file, then run:&lt;/p&gt;

&lt;p&gt;source ~/.bashrc&lt;br&gt;
&lt;strong&gt;Command:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;code&gt;ln original_file new_named_file&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Command:&lt;/strong&gt;&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
bash
ln original_file new_named_file
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>ubuntu</category>
      <category>opensource</category>
      <category>learning</category>
      <category>linux</category>
    </item>
    <item>
      <title>Linux-Basics Commands &amp; File Operations</title>
      <dc:creator>Nivethithaa Saravanavel</dc:creator>
      <pubDate>Tue, 07 Oct 2025 14:38:18 +0000</pubDate>
      <link>https://dev.to/nivethithaa_saravanavel_3/day-1-of-learning-linux-1n6k</link>
      <guid>https://dev.to/nivethithaa_saravanavel_3/day-1-of-learning-linux-1n6k</guid>
      <description>&lt;h2&gt;
  
  
  What is Linux?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Linux is an &lt;strong&gt;open-source operating system&lt;/strong&gt; based on Unix, used to run computers, servers, and mobile devices.&lt;/li&gt;
&lt;li&gt;It’s known for its stability, security, and flexibility, and powers systems like Android, servers, and supercomputers.&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  Installing Linux on Windows (WSL)
&lt;/h3&gt;

&lt;p&gt;to install Linux in windows using WSL (Windows Subsystem for Linux):&lt;br&gt;
This allows you to run Linux directly on Windows without a virtual machine.&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;code&gt;wsl --install&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;h3&gt;
  
  
  Basic Linux Commands
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Command&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;pwd&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Shows the present working directory&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;uname -a&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Displays system information&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;whoami&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Shows the current username&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;clear&lt;/code&gt; or &lt;code&gt;Ctrl + L&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Clears the terminal screen&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;history&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Displays previously used commands&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;mkdir directory_name&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Creates a new directory&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;cd directory_name&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Changes to the specified directory&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h3&gt;
  
  
  Working with the vi and nano Editors
&lt;/h3&gt;

&lt;h4&gt;
  
  
  File Editing Commands
&lt;/h4&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Command&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;vi file_name.extension&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Create or open a file in vi editor&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;nano file_name&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Open file in nano editor&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;i&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Switch to insert mode in vi to add content&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;Esc + :wq&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Save changes and exit vi&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;Esc + :q!&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Exit vi without saving&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h3&gt;
  
  
  Listing and Managing Files
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Command&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;ls&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;List all files and directories&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;sudo&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Execute commands as an admin&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;apt-get install package_name&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Install software in Ubuntu&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;Ctrl + Shift + C&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Copy text from terminal&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;Ctrl + Shift + V&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Paste text into terminal&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;touch file_name&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Create an empty file&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;rm *&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Remove all files in the current directory&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;rm *.txt&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Remove all &lt;code&gt;.txt&lt;/code&gt; files in the directory&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;cat file_name&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Display file content&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;cp old_file new_file&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Copy a file&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;mv old_name new_name&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Rename or move a file&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;cat &amp;gt;&amp;gt; file_name&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Append content to a file&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;echo "text" &amp;gt;&amp;gt; file_name&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Directly append text to a file from terminal&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;history &amp;gt;&amp;gt; history.txt&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Save command history to a file&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

</description>
      <category>linux</category>
      <category>architecture</category>
      <category>learning</category>
      <category>software</category>
    </item>
  </channel>
</rss>
