RH124 Chapter 1 Accessing the Command Line

ls date cal whoami

命令 -选项参数

选项可叠加(ls -lh /boot =  ls -l -h /boot )

ls           显示当前目录文件

pwd       显示当前目录

ls -a       显示所有文件(包括以.开头的隐藏文件)

ls -l        显示文件(包括属性信息)(单位为字节)

clear       清屏(快捷键是ctrl+l

ls -ld      显示某个文件夹自身目录属性,不会显示目录里面文件的属性

ls --help   一个单词作为一个选项用两个--

cat /etc/shells   查看系统支持的shell类型,默认是/bin/bash

shell      是将命令解释为二进制的解释器

cpu——shell是一个进程/子系统——终端——用户

shell里面的快捷键如下:

上下键         调用前后命令

ctrl+shift+t    快速打开终端

ctrl+d       快速关闭标签

ctrl+pageup/pagedown  进行标签切换

history        显示历史命令

!数字       直接调用数字对应的命令

ctrl+r       进行快速搜索命令,回车执行,按前进键取消执行进行修改

ctrl+c        不想执行命令

#         注释

Linux命令不支持简写,必须完整写出来,如果只有一个按tab一下自动补全,如果多个,按两次Tab出现开头所有命令

linux大小写严格区分

命令一行写不完可以写\回车继续写

【按ESC松手后按.】或者【按alt+.】  快速引用上个命令中最后一个部分

ctrl+a           光标快速跳转本行开头

ctrl+e           快速跳转到本行结尾

ctrl+k           从当前光标开始删除一直到本行结束

ctrl+u           从当前光标开始删除一直到本行开头

su root(相当于su)             切换root用户,但pwd当前目录没有改变。

su - root (相当于su -)       切换到root用户,但pwd当前目录改变。

时间: 2024-10-24 13:27:47

RH124 Chapter 1 Accessing the Command Line的相关文章

chapter1 Accessing the command line using the local console

1.命令 usermod -L username 禁用用户 usermod -U username 开启用户 禁用用户后, 用户连接时输入正确的密码也提示出错. 主要在/etc/shadow加入!屏蔽用户 也可以直接修改/etc/password后的shell为/sbin/nologin,输入正确的密码后自动退出.

Appendix D. Gradle Command Line

http://www.gradle.org/docs/current/userguide/gradle_command_line.html Appendix D. Gradle Command Line The gradle command has the following usage: gradle [option...] [task...] The command-line options available for the gradle command are listed below:

【转载】Data Science at the Command Line

Data Science at the Command Line Data Science at the Command Line is a new book written by Jeroen Janssens. This website contains information about the upcoming workshop in London, the webcast from August 20th, instructions on how to install the Data

Command Line Skills

Part 1: Command Line Interface(CLI) The Command Line Interface (CLI), is a text-based interface to the computer, where the user types in a command and the computer then executes it. The CLI environment is provided by an application on the computer kn

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 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

[Node.js] Pass command line arguments to node.js

Command line arguments are often used to modify the behavior of an application or specify needed parameters for operation. In this lesson, you will learn how to access the command line arguments passed to your node.js application as well as different

Can't use Subversion command line client: svn

使用Intellij IDEA的svn时提示出错:Can't use Subversion command line client: svn. 当我在使用svn,Checkout一个项目后,然后将其导入到Intellij idea中,出现这样的报错!经过google后,发现了问题,我的问题是:我安装的TortoiseSVN工具,本身是带有command-line功能的(我没有安装)如图: 所以报这个错误.如果安装的TortoiseSVN工具,本身是不带有command-line功能的,必须要安装

解决MySQL5.6 Warning: Using a password on the command line interface can be insecure

MySQL5.6在使用名文的密码登陆时,会出现:Warning: Using a password on the command line interface can be insecure 当然这样对于平常的登陆会无所谓,如果在脚本里使用使用的话,就会有问题: 解决这种问题的方法是需要在my.cnf中配置即可: 在my.cnf中加入如下配置 [mysqladump] user=my_name password=my_pass 重启MySQL 即可 以后再使用mysqldump命令就不需要加上任