打卡今天学习的命令 (linux

1.1 cp - 复制文件或目录

cp source destination
cp -r source_directory destination  # 递归复制目录及其内容

1.2 rm - 删除文件或目录

rm file
rm -r directory  # 递归删除目录及其内容

1.3 mv - 移动/重命名文件或目录

mv source destination
mv old_name new_name  # 重命名文件或目录

2. 文件内容查看和操作

2.1 more - 分页显示文件内容

more file

2.2 cat - 连续显示文件内容

cat file

2.3 which - 显示可执行程序的路径

which command_name

2.4 find - 查找文件

find path -name filename

3. 模糊查找和过滤

3.1 管道符 | - 将命令的输出作为另一命令的输入

command1 | command2

3.2 grep - 在文件中搜索模式

grep pattern file

或者 grep “it” 过滤带有it 的行

3.3 wc - 统计文件的行数、字数和字符数

wc file

4. 文件重定向和输出

4.1 echo - 输出文本

echo "Hello, Linux!"

4.2 >>> - 重定向输出到文件

command > file  # 覆盖文件内容
command >> file  # 追加到文件末尾

5.1 chmod - 修改文件或目录权限

chmod permissions file

其中,permissions 可以用数字或符号表示:

  • 使用数字表示权限:

    • 4 表示读权限
    • 2 表示写权限
    • 1 表示执行权限

    例如,chmod 754 file 表示设置文件权限为 -rwxr-xr--

  • 使用符号表示权限:

    • u 表示文件所有者
    • g 表示文件所属组
    • o 表示其他用户
    • + 表示添加权限
    • - 表示移除权限
    • = 表示设置权限
    • 例如,chmod u+rwx,go=rx file 表示设置文件权限为 -rwxr-xr-x

你可能感兴趣的:(linux)