[Linux] The Linux Command Line

date: 显示当前系统的时间和日期

cal: 显示当月的日历

df: 查看磁盘驱动器当前的可用空间

free: 显示可用内存

exit: 关闭终端窗口

pwd: 查看当前工作目录

cd: 改变工作目录

ls: 列出当前工作目录的文件和目录

file: 打印文件内容的简短说明

less: 查看文件内容

cp: 复制文件和目录

mv: 移动或重命名文件和目录

mkdir: 创建目录

rm: 移除文件和目录

ln: 创建硬链接和符号链接

type: 显示命令的类型

which: 显示可执行程序的位置

man: 显示命令的手册页

apropos: 显示一系列合适的命令

info: 显示命令的info条目

whatis: 显示命令的简要描述

alias: 创建一条命令的别名

cat: 合并文件

sort: 对文本行排序

uniq: 报告或删除文件中的重复的行

wc: 打印文件中的换行符、字和字节的个数

grep: 打印匹配行

head: 输出文件的第一部分内容

tail: 输出文件的最后一部分内容

tee: 从stdin读取数据,并同时输出到stdout和文件

echo: 显示一行文本

clear: 清屏

history: 显示历史列表的记录

chmod: 更改文件模式

su: 以其他用户和组ID的身份登陆shell

sudo: 以另一个用户的身份执行命令

chown: 改变文件所有者和所属群组

chgrp: 更改文件所属群组

passwd: 设置或者更改密码

ps: 显示当前所有进程的运行情况

top:实时显示当前所有任务的资源占用情况

jobs: 列出所有活动作业的状态信息

bg: 设置在后台中运行作业

时间: 2024-10-14 11:12:19

[Linux] The Linux Command Line的相关文章

Linux kernel parameter command line设置

现在CPU2核以上比较普遍了,平时用linux上上网可能用不着双核甚至4核,大部分发行版内核都启用了CPU_HOTPLUG,到/sys/devices/system/cpu下可以看到文件夹cpu0.cpu1,除cpu0(这个不能关)每个文件夹下都有一个online文件,往里面写0就可以关闭核心,比如我的T7300,echo '0' >/sys/devices/system/cpu/cpu1/online 就可以关闭第二个核,不影响小型应用.要开启,往里面echo 1就行.这个操作好像要root完

10 Interesting Linux Command Line Tricks and Tips Worth Knowing

I passionately enjoy working with commands as they offer more control over a Linux system than GUIs(Graphical User Interfaces) applications, therefore am always on the look out to discover or figure out interesting ways and ideas to make Linux so eas

Linux Command Line 笔记(1)

Yunduan CUI graphical user interfaces make easy tasks easy, while command line interfaces make difficult tasks possible Part 1 学习Shell 1. 什么是 Shell? Shell 是用户与操作系统交流的程序,它读取用户的键盘输入并交由操作系统执行相应的命令.所有linux都支持一个叫做 bash 的shell,它的全称是 "Bourne Again SHell&quo

[Linux Command Line and Shell Scripting Bible] basic shell script

1 #!/bin/bash 2 ############################################ 3 # @content chapter 8,9 of Linux Command Line and Shell Scripting Bible 4 # @reader gavin 5 # @date 2014/12/14 6 ############################################ 7 CHAPTER 8 8 9 + user varriab

在Linux下使用gcc编译mesa文件报undefined reference to symbol '[email protected]@GLIBC_2.2.5和DSO missing from command line两个错误的解决方案

一.概述 在Linux系统下使用gcc编译用C语言写的mesa的示例程序. 环境:Ubuntu Server 18.04.1 二.问题的出现 在Ubuntu下安装好mesa所需的库文件,将目标文件从github上克隆下来之后编译. 以上截取的是用gcc编译目标文件和传参的介绍: gcc:源程序将用gcc编译器进行编译: osdemo,c:将要被编译的源程序: -lOSMesa:链接OSMesa库: -lGLU:链接GLU库: -lGL:链接GL库: -o:指定目标名称: osdemo:编译后生成

linux下配置QT5.12 ERROR: Unknown command line option '-no-xcursor'.!

xcursor是个什么东西.为什么会报错,怎么处理!在qt的autoconfigure.sh中添加下三条命令都不行.提示不认识-no-xcursor或者不认识nomake命令. -no-xcursor -no-xfixes -no-xrandr -no-xrender -no-separate-debug-info -no-fontconfig \-nomake examples -nomake tools -nomake tests -no-iconv \ linux下配置QT5.12 ERR

How to start a pdf reader from a Linux command line?

Before you do this, you should be in a GOME or KDE environment, then type the following commands to check whether you've stalled the app: $ type evince then just view the PDF file by typing this: $ evince filename.pdf But you'd better add a "&&qu

Linux command line shortcut

It may or may not surprise you to know that the bash shell has a very rich array of convenient shortcuts that can make your life, working with the command line, a whole lot easier. This ability to edit the command line using shortcuts is provided by

解决 linux -bash: telnet: command not found

输入命令telnet提示  linux -bash: telnet: command not found 解决方法: yum list telnet*   查看telnet相关的安装包 yum install telnet-server 安装telnet服务 yum install telnet.* 安装telnet客户端 然后运行telnet正常了

Linux Bash Scripting - Command Chaining & Command lists

# this is to show you how to execute a series of commands in one strike. $ clear; cd /; ls -l; echo "You are in $PWD"; echo "Time to go back home"; cd ~; # use semi colon between each command. # There is also command lists, which is fo