How to use the shell, terminal and the advanced tools

Introduction

Why use English instead of Chinese when writing a blog? As time goes by, the more I have learned, the more I have to handle with the English documents or papers. So, I realized it was time for me to adapt to the full English environment to improve my ability.

Though it's not easy for me to write a blog in English, as my mother tongue isn't English, I still write this blog as the first step to determine that I will make full use of my energy to do so.

Just start it from "The Missing Semester of Your CS Education".


Catalog


Permissions

User

  • root

    can do anything
  • #​ : a root(shell)
  • $​ : not a root(shell)
  • sudo​ : run command as a root
  • sudo su​ : switch as a root user


Files and Directories

  • ls -l​ : gives the additional information

    • ----------​ : 1+3+3+3

    • d---------​ : directory

      • ---------​ : permissions

        • 1-3 ---​ : set for the owner of the file

        • 4-6 ---​ : set for the group of the file

        • 7-9 ---​ : set for the others of the file

        • ---​ : read( r​ ), write( w​ ), execute( x​ )

          • File: allowed to read, write, and execute this file

          • directory :

            • read: allowed to see which files are inside this directory
            • write: allowed to rename, create, or remove files within that directory
            • execute: allowed to enter this directory
          • -​ : do not have that permission

        • How about 7​ ?

          • ---​ can be present by using the three bits binary digit

          • 7​ = 111​ : rwx

            • 1​ : set the permission
            • 0​ : not set the permission


Command

  • date​ : show the time

  • echo​ : display the given arguments that are separated by whitespace

    • If the arguments consist of multiple words

      Use the ""​ or '​ to quote it.

    • You can use \​ to escape single characters

  • which​ : allows us to know the path of the program that we want to run

  • tee​ : write the contents of input to a file and to the standard out

  • mv​ : change the location or name of the file

  • rm​ : remove a file

    • rm -r​ : remove a directory and all the files within it
  • rmdir​ : remove the empty directory

  • mkdir​ : create a new directory

  • man​ : for manual pages of the program

  • cat​ : cat <​ files >​ standard output

  • cd​ : change the current working directory

    • ~​ : home directory
    • -​ : previous directory
  • tail​ : Print the last 10 lines of each FILE to standard output

  • pwd​ : Print the name of the current working directory.

  • find

  • xdg-open

  • We can give a path to ls​ by offering arguments(flags | options)

    • flags and options usually start with a -

    • --help​ can print out a bunch of information about that command

      • Usage

        • ...​ : means zero or one or more options
        • []​ : means optional
      • Funtion description

        • flag: -​ + single letter

          • No value content also is a flag
        • option: anything that does take a value

In reality, we don't need to memorize them all, because we can query the usage of the command by adding the --help​ or use the man​ for more information about it.


stream

  • Every program by default has two primary streams

    • Input stream : keyboard(default)

    • output stream : terminal(default)

    • rewire these streams

      • <​ : rewire the input for this program to be the contents of this file
      • >​ : rewire the output for this program to be the contents of this file
    • >>​ : append the content but not overwrite the original one.

  • |​ : left program output right program input


Path

When we simply type the echo hello​ or date​, it will work and print the result on the terminal, but how can our shell locate them? The answer is: by paths.

Our shell can locate the program through the environment variable. Paths are a way to name the location of a file on your computer.

  • Environment variable: a variable

    Things that are set whenever you start your shell

  • Example: echo $PATH

    It shows you all of the paths on my machine that the shell will search for programs

  • What is paths?

    • Linux/macOS: /​ separate the paths
    • Windows: \​ separate the paths
    • Absolute paths: fully determine the location of a file
    • Relative paths: relative to where you currently are
    • Command pwd​ can show the present working directory
  • Working directory

    All the relative paths are relative to the current working directory

    • Configure the terminal can show the full path
    • .​ : the current directory
    • ..​ : the parent directory


Run program

  • Methods for running the program anyway

    • method1: give the name of the program and let the shell figure out where it is as if you have added the absolute paths to the $PATH
    • method2: give the absolute paths of the program
  • Program always works on the current working directory(without any other arguments)

  • Command ls​ can list all the files in the current directory

  • In fact, you can regard the shell and the Bash(Bourne Again Shell) as a kind of programing language

    • You can run a program with arguments
    • You can do things like while loops, for loops, conditionals, functions and variables
  • ctrl+L​ : clear the terminal and go back to the top


Exercises

  1. Already on Linux

  2. mkdir missing && cd missing

  3. man touch

  4. touch semester

  5. echo '#!/bin/sh' > semester && echo 'curl --head --silent https://missing.csail.mit.edu' >> semester

  6. ./semester

    ls -l

    -rw-rw-r--​ : no permission to execute the file

  7. sh semester

    #​(root) run the /bin/sh

    $​ run the ./semester

  8. man chmod

  9. chmod u+x semester

    ./semester

  10. ./semester | grep 'last-modified' > ~/last-modified.txt

  11. cat /sys/class/power_supply/BAT0/capacity_level


References


How to use the shell, terminal and the advanced tools的更多相关文章

  1. 利用Go2Shell 实现 Mac Finder 直接shell端打开当前文件夹

    Finder 窗口 ,点击下图所示的按钮(红色框内),即可打开Shell Terminal. 打开后,如图 用法 安装go2shell后,打开finder的application文件夹,找到go2sh ...

  2. doris: shell invoke .sql script for doris and passing values for parameters in sql script.

    1. background in most cases, we want to execute sql script  in doris  routinely. using azkaban, to l ...

  3. Android Weekly Notes Issue #219

    Android Weekly Issue #219 August 21st, 2016 Android Weekly Issue #219 ARTICLES & TUTORIALS Andro ...

  4. RASPBERRY PI 外设学习资源

    参考: http://www.siongboon.com/projects/2013-07-08_raspberry_pi/index.html Raspberry Pi         Get st ...

  5. 看懂理解 keyboard中 , navigation的设置: 切换工作区和移动窗口到不同的工作区.

    navigation中, 主要有两个方面的内容: 移动窗口到工作区 的shortcuts 切换工作区的shortcuts 首先清楚: 工作区workspace, fedora 23中 好像只有上下方向 ...

  6. Find mac address

    Windows Method 1: Using the Command Prompt 1 Click on the Start button.   2 Type cmd in the search b ...

  7. 9个使用前必须再三小心的Linux命令

      Linux shell/terminal 命令非常强大,即使一个简单的命令就可能导致文件夹.文件或者路径文件夹等被删除.在一些情况下,Linux 甚至不会询问你而直接执行命令,导致你丢失各种数据信 ...

  8. Jmeter安装设置

    Linux: 其实下载之后就可以用,不过为了能在命令行直接敲入”jmeter"就可以调出Jmeter程序,还需要进行如下设置. 1. Download apache-jmeter-2.12. ...

  9. Nagios监控生产环境redis群集服务战

    前言:     曾经做了cacti上展示redis性能报表图.能够看到redis的性能变化趋势图,可是还缺了实时报警通知的功能,如今补上这一环节. 在redis服务瓶颈或者异常时候即使报警通知,方便d ...

  10. tmux tutorial

    This is a great tutorial about tmux quick start: http://www.youtube.com/watch?v=wKEGA8oEWXw&nore ...

随机推荐

  1. Mac netstat 查看端口报错 netstat: option requires an argument -- p 解决

    netstat -anvp |grep 10001 查询端口的时候报错提示 意思是缺少协议. 解决方案在Mac上正确使用的方法是:即-f需要加上地址族,-p需要加上协议TCP或者UDP等 a)如果需要 ...

  2. java 实现N进制转M进制

    1. 把10进制转成N进制:除N取余,逆序排列 这里逆序排列使用StringBuilder类的reverse()函数来实现.   /**    * 10进制整数转换为N进制整数. 10进制转换为N进制 ...

  3. 【转载】Spring Cloud Gateway-全局过滤器(Global Filters)

    http://www.imooc.com/article/290821 TIPS 本文基于Spring Cloud Gateway SR2,理论适配Spring Cloud Gateway SR1以及 ...

  4. Qt音视频开发26-ffmpeg播放器

    一.前言 用ffmpeg来实现自己的播放器,这是一直以来的一个目标,之前的难点卡在音视频同步以及如何播放声音这两点(尽管之前已经进行过不少的尝试和探索,但是问题还是挺多,比如音视频同步不完美,有些文件 ...

  5. 祝大家这周圣诞快乐!!本周进军多模态!😀From LLMs to MLLMs:😜Exploring the Landscape of Multimodal Jailbreaking

    从LLMs到MLLMs:探索多模态越狱攻击的前景 禁止盗用,侵权必究!!!欢迎大家积极举报 ①脆弱性代表:越狱攻击(恶意指令/训练&解码干预). ②最近的越狱攻击: 整体说:构建越来越复杂场景 ...

  6. 不为人知的网络编程(十四):拔掉网线再插上,TCP连接还在吗?一文即懂!

    本文由作者小林coding分享,来自公号"小林coding",有修订和改动. 1.引言 说到TCP协议,对于从事即时通讯/IM这方面应用的开发者们来说,再熟悉不过了.随着对TCP理 ...

  7. Angular-教程

    https://www.runoob.com/angularjs/angularjs-tutorial.html https://www.runoob.com/angularjs2/angularjs ...

  8. w3cschool-MyBatis 教程

    参考 https://www.w3cschool.cn/mybatis/mybatis-dyr53b5w.html MyBatis 入门 SqlSessionFactoryBuilder用 SqlSe ...

  9. pytest基础

    pytest断言 1. == 直接对两端的值进行判断是否一致 1==1 2.assert in 判断值是否在正确范围   def test_jia(self): a='hello' b='a' ass ...

  10. C++:Boost库

    今日安装一个PSI库时,需要boost库,在此认识一下boost库,转载:macOS 中Boost的安装和使用 介绍 Boost是一个功能强大,构造精良,跨越平台,代码开源,完全免费的C++程序库. ...