菜鳥教程:全面學(xué)習(xí) pwd 命令
10.設(shè)置多行顯示 (就像下面這樣),
/home123#Hello#!
接著執(zhí)行命令(比如說ls)來檢驗一切OK。
avi@tecmint:~$ PS1='> $PWD$ 123#Hello#!$ ' /home123#Hello#!
設(shè)置多行顯示
11.一下子檢查當(dāng)前工作路徑以及先前的工作路徑。
avi@tecmint:~$ echo “$PWD $OLDPWD”/home /home/avi
檢查當(dāng)前工作路徑
12.pwd文件的絕對路徑(以/開始)。
/bin/pwd
13.pwd源文件文件的絕對路徑(以/開始)。
/usr/include/pwd.h
13.pwd手冊的絕對路徑(以/開始)。
/usr/share/man/man1/pwd.1.gz
15.寫一個shell腳本分析home目錄下的一個目錄(比如tecmint)。如果當(dāng)前目錄是tecmint就輸出“Well! You are in tecmint directory”接著輸出“Good Bye”,不然就在tecmint下面創(chuàng)建一個目錄并提示你cd進入它。
讓我們首先創(chuàng)建一個‘tecmint’目錄,在下面創(chuàng)建一個名為‘pwd.sh’的腳本文件。
avi@tecmint:~$ mkdir tecmintavi@tecmint:~$ cd tecmintavi@tecmint:~$ nano pwd.sh
接下來在pwd.sh中加入下面的腳本。
#!/bin/bash x=$(pwd)if [ $x == /home/$USER/tecmint ]then{echo Well you are in tecmint directoryecho Good Bye}else{mkdir /home/$USER/tecmintecho Created Directory tecmint you may now cd to it}fi
給予執(zhí)行權(quán)限并運行。
avi@tecmint:~$ chmod 755 pwd.shavi@tecmint:~$ ./pwd.shWell you are in tecmint directoryGood Bye
評論