003 Linux常用命令之檔案操作

2022-07-25 12:36:13 字數 2053 閱讀 7409

1.檔案操作

root@ubuntu:~/test# touch hello.c

root@ubuntu:~/test# ls

hello.c

cp和mv命令,相當於windows平台複製和剪下

cat命令

more和less,分螢幕顯示檔案資訊

less:

head和tail命令

tail檢視檔案尾,預設顯示10行內容

2.統計資訊相關

root@ubuntu:~/test# wc hello.c 

8 10 91 hello.c

root@ubuntu:~/test# wc -l hello.c

8 hello.c

root@ubuntu:~/test# wc -w hello.c

10 hello.c

root@ubuntu:~/test# wc -c hello.c

91 hello.c

root@ubuntu:~# df -h 

檔案系統 容量 已用 可用 已用% 掛載點

udev 973m 0 973m 0% /dev

tmpfs 199m 9.0m 190m 5% /run

/dev/sda1 21g 9.2g 11g 48% /

tmpfs 992m 256k 992m 1% /dev/shm

tmpfs 5.0m 4.0k 5.0m 1% /run/lock

tmpfs 992m 0 992m 0% /sys/fs/cgroup

tmpfs 199m 60k 199m 1% /run/user/1000

3.檔案許可權和使用者屬性
root@ubuntu:~/test# ls -l

總用量 4

-rw-r--r-- 1 root root 91 10月 27 14:16 hello.c

哦,對了,後面還有乙個1,那個1代表硬鏈結的計數,下面會有命令來進行演示

建立硬鏈結-ln src des

root@ubuntu:~/test# ln hello.c hello.c.hard

root@ubuntu:~/test# ls

hello.c hello.c.hard

root@ubuntu:~/test# ln hello.c hello.c.hard1

root@ubuntu:~/test# ls -l

總用量 12

-rw-r--r-- 3 root root 91 10月 27 14:16 hello.c

-rw-r--r-- 3 root root 91 10月 27 14:16 hello.c.hard

-rw-r--r-- 3 root root 91 10月 27 14:16 hello.c.hard1

此時的硬鏈結計數變成了3,當我們的硬鏈結的計數變為0的時候,那麼檔案也會被刪除

root@ubuntu:~/test# ln -s hello.c hello.c.soft

root@ubuntu:~/test# ls -l

總用量 12

-rw-r--r-- 3 root root 91 10月 27 14:16 hello.c

-rw-r--r-- 3 root root 91 10月 27 14:16 hello.c.hard

-rw-r--r-- 3 root root 91 10月 27 14:16 hello.c.hard1

lrwxrwxrwx 1 root root 7 10月 27 14:43 hello.c.soft -> hello.c

4.改變檔案許可權

chown和chgrp改變使用者和改變組

Linux常用命令之Linux常用命令實戰知識點

在在複習linux,這是以前做的筆記,分享一下。linux系統 一切皆檔案 操作檔案就是操作linux系統 一 linux版本 1 redhat 企業版 收費 2 centos redhat的社群版 免費 3 ubuntu 4 紅旗 二 linux的特點 1 多使用者 多工 2 豐富的網路功能 3 ...

Linux常用命令之檔案處理命令

1 檔案命名規則 1 除了 之外,所有字元都合法 2 有些字元最好不要用,如空格符 製表符 字元 等 3 避免使用.作為普通檔名的第乙個字元。4 大小寫敏感 2 命令的格式 格式 命令 選項 引數 ex ls la etc ps 1 多個選項可以寫在一起 2 目錄的 和 當前目錄 當前目錄的父目錄 ...

Linux常用命令之檔案處理命令

命令格式 命令 選項 引數 例如 ls la etc 說明 1 個別命令使用不遵循此格式 2 當有多個選項時,可以寫在一起 3 簡化選項與完整選項 a等於 all 命令格式與目錄處理命令 ls 命令所在路徑 bin ls 執行許可權 所有使用者 功能描述 顯示目錄檔案 語法 ls 選項 ald 檔案...