shell指令碼掐頭去尾

2021-09-12 21:28:47 字數 1119 閱讀 1588

[root@room4pc09 桌面]# a

=`head -1 /etc/passwd`

您在 /

var/mail/root 中有新郵件

[root@room4pc09 桌面]# echo $

root:x:0:

0:root:

/root:

/bin/bash

[root@room4pc09 桌面]# echo $ #刪除第乙個:前面數字x:0

:0:root:

/root:

/bin/bash

[root@room4pc09 桌面]# echo $ #刪除最後乙個:前面數字

[root@room4pc09 桌面]# a

=`head -1 /etc/passwd`

root:x:0:

0:root:

/root:

/bin/bash

[root@room4pc09 桌面]# echo $ #去掉第乙個:尾數字

root:x:0:

0:root:

/root

[root@room4pc09 桌面]# echo $ #去掉最後乙個:尾數

root

[root@room4pc09 桌面]# echo $

12346

[root@room4pc09 桌面]# pass=

12445

[root@room4pc09 桌面]# echo $

12445

Shell學習筆記 字串掐頭去尾方法

一 語法 在shell中可以通過 對字串進行掐頭去尾操作,使用方法如下 二 例子1 假設我們定義乙個變數為 filename dir1 dir2 dir3 my.file.txt 可以通過 分別替換得到不同的值 三 例子2 使用者名稱 密碼 ip str user name password 192...

Shell指令碼(三) Shell指令碼入門

1 指令碼格式 指令碼以 bin bash開頭 指定解析器 2 第乙個shell指令碼 helloworld 1 需求 建立乙個shell指令碼,輸出helloworld 2 案例實操 atguigu hadoop101 datas touch helloworld.sh atguigu hadoo...

Shell指令碼和shell

1.shell script,shell指令碼與windows dos下的批處理相似,也就是用各類命令預先放入到乙個檔案中,方便一次性執行的乙個程式檔案,主要是方便管理員進行設定或者管理用的。但是它比windows下的批處理更強大,比用其他程式設計程式編輯的程式效率更高,畢竟它使用了linux un...