Bài đăng

Đang hiển thị bài đăng từ tháng 7 13, 2021

[Linux Command] - Các lệnh cơ bản

Hình ảnh
Login into your Linux machine, and do the following using a terminal: Run  "pwd"  to check the present working directory If you are not in your home directory, run the command " cd " Run " cd /etc " Run " cd ~ " Check if you are back in your home directory? You should be. If not, you did something wrong. Run " cd /usr " Run " cd $HOME " Check if you are back in your home directory? You should be. If not, you did something wrong. tạo file: touch sửa file: edit/open filename đọc file: cat filename sao chép file: cp di chuyển: mv tail -n N đọc và in ra N dòng  less   in ra nội dung của một file theo từng trang grep -i   để tìm kiếm không phân biệt hoa thường hoặc  grep -r    để tìm kiếm trong toàn thư mục  find -iname   để tìm kiếm không phân biệt hoa thường  tar -cvf    tạo file nén (.tar) từ các file có sẵn.   tar -tvf   xem nội dung file nén (.tar).    tar -xvf   ...

[C programming language] Lesson 1. Introduction

1. History of C C (/siː/, as in the letter c) is a general-purpose, procedural computer programming language supporting structured programming, lexical variable scope, and recursion, while a static type system prevents unintended operations. –Evolved from two other programming languages BCPL and B –“Typeless” languages – Dennis Ritchie (Bell Laboratories) –Development language of UNIX – Hardware independent – 1989: ANSI standard – 1990: ANSI and ISO standard published ANSI/ISO 9899: 1990