Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Hệ điều hành
Module Linux essentials - Module 6: Working with files and directories
Đang chuẩn bị liên kết để tải về tài liệu:
Module Linux essentials - Module 6: Working with files and directories
Ðức Hải
101
18
pptx
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
Module 6 guide students work with files and directories. After studying this chapter you should be able to: Understanding files and directories including those that are hidden, home directory, properly utilizing absolute and relative paths. | Module 6 Working with Files and Directories Exam Objective 2.3 Using Directories and Listing Files Objective Summary Understanding Files and Directories including those that are hidden Home Directory Properly utilizing absolute and relative paths Understanding Directories Files and Directories File contain data (text, graphics, etc) Directories store filenames Top level directory: / (AKA, root directory) Example directory structure: Directory path Directions to a specific file or directory Directions given from / directory are called “absolute” paths Directions given from the current directory are called “relative” paths The home directory Each user has a home directory Typically /home/bob for a user named bob Place to store your own files Normally users can’t access the home directory of other users The ~ character symbolizes the home directory The current directory The directory that your shell is currently in Can be displayed with the pwd command Might also be displayed in your prompt Changing directories Use the cd command With no arguments, takes you to your home directory ~bob would refer to bob’s home directory Absolute vs relative pathnames Absolute pathnames always provide directions from the root directory (/) Relative pathnames always provide directions from the current directory. To refer to one directory above current directory, use the characters To refer to the current directory, use the . character Manipulating Files Exam Objective 2.4 Creating, Moving and Deleting Files Objective Summary Case sensitivity Simply globbing and quoting Listing files in a directory List files with the ls command Different file types may be highlighted by colored filenames: plain file A file that isn't a special file type directory A directory file (contains other files) executable A file that can be run like a program symbolic link A file that points to another file Display of filenames in color is the result of the --color option Common ls options Many options to the ls command, including: -a – display all files, including hidden files -l – long display listing -h – Give file sizes in human readable sizes -R – Recursive listing -S – Sort output based on file size -t – Sort output based on modification time -d – Don’t display directory contents Copying files The cp command copies files: cp [source] [destination] Use –v option to display copy process Use –i to prompt overwrites Use –n to avoid overwrites Use –r to copy directory structures Moving files The mv command copies files: mv [source] [destination] The mv command also is used to rename files Supported options that work the same as the cp command: -i, -n and –v Creating files Editors can be used to create files (discussed later in this course) Use the touch command to create an empty file The touch command also updates the modification timestamp of a file Removing files The rm command is used to delete files File deletion is permanent! Use -i to avoid accidental deletion when using globs Delete directories with the –r option or rmdir if the directory is completely empty Making directories Use the mkdir command to create directories
TÀI LIỆU LIÊN QUAN
Module Linux essentials - Module 0: Linux essentials chapters
Module Linux essentials - Module 1: Introduction to Linux
Module Linux essentials - Module 3: Using Linux
Module Linux essentials - Module 4: Command line skills
Module Linux essentials - Module 2: Open source applications and licenses
Module Linux essentials - Module 5: Getting help
Module Linux essentials - Module 6: Working with files and directories
Module Linux essentials - Module 7: Archiving and compression
Module Linux essentials - Module 8: Pipes, redirection and REGEX
Module Linux essentials - Module 9: Basic scripting
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.