系統目錄/ls命令/文件類型/alias命令

9月11日任務shell

 

2.1/2.2 系統目錄結構vim

2.3 ls命令centos

2.4 文件類型bash

2.5 alias命令 ssh

 

2.1/2.二、2.3ui

Xshell 4 (Build 0123)blog

Copyright (c) 2002-2013 NetSarang Computer, Inc. All rights reserved.io

 

Type `help' to learn how to use Xshell prompt.ast

Xshell:\>file

 

Connecting to ...

Connection established.

To escape to local shell, press 'Ctrl+Alt+]'.

 

Last login: Sat Sep  8 21:16:59 2018 from gateway

[root@centos64-01 ~]# ls /

bin   dev  home  lib64  mnt  proc  run   srv  tmp  var

boot  etc  lib   media  opt  root  sbin  sys  usr

 

[root@centos64-01 ~]# man ls

[root@centos64-01 ~]# ls -l -i -a -t -h -d^C

[root@centos64-01 ~]#

備註:ls 經常使用參數-l -i -a -t -h -d。

 

 

2.4

在Linux文件系統中,主要有如下幾種類型的文件。

[]普通文件(regular file)

[]目錄(directory)

[]連接文件(link file)

[]設備(device)

 

2.5

[root@centos64-01 ~]# alias

alias cp='cp -i'

alias egrep='egrep --color=auto'

alias fgrep='fgrep --color=auto'

alias grep='grep --color=auto'

alias l.='ls -d .* --color=auto'

alias ll='ls -l --color=auto'

alias ls='ls --color=auto'

alias mv='mv -i'

alias rm='rm -i'

alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'

[root@centos64-01 ~]# alias aming='ls -lha'

[root@centos64-01 ~]# aming

總用量 32K

dr-xr-x---.  3 root root  163 9月   4 20:41 .

dr-xr-xr-x. 17 root root  224 8月  14 18:47 ..

-rw-------.  1 root root 1.4K 8月  14 18:48 anaconda-ks.cfg

-rw-------.  1 root root 2.6K 9月   8 12:26 .bash_history

-rw-r--r--.  1 root root   18 12月 29 2013 .bash_logout

-rw-r--r--.  1 root root  176 12月 29 2013 .bash_profile

-rw-r--r--.  1 root root  176 12月 29 2013 .bashrc

-rw-r--r--.  1 root root  100 12月 29 2013 .cshrc

drwx------.  2 root root   48 8月  19 18:12 .ssh

-rw-r--r--.  1 root root  129 12月 29 2013 .tcshrc

-rw-------.  1 root root  716 9月   4 20:41 .viminfo

[root@centos64-01 ~]# which aming

alias aming='ls -lha'

    /usr/bin/ls

[root@centos64-01 ~]# unalias aming

[root@centos64-01 ~]#

 

相關文章
相關標籤/搜索