資料夾的建立和簡單shell字串的擷取

2021-09-25 20:39:47 字數 1205 閱讀 2861

首先先建立乙個資料夾

比如說建立乙個helloworld的檔案

mkdir helloworld
在建立乙個子目錄取名為hello

mkdir -p helloworld/hello
建立好了可以輸入ls查詢

這樣就是建立好了

再建立乙個txt文件

輸入

touch helloworld/hello.txt
這樣創好的文字檔案就會在helloworld檔案內了

接下來我們再來實現簡單的shell字串的擷取

先要找到自己建立的shell檔案

比如說剛才建立 的helloworld檔案

輸入

cd helloworld
接著再使用gedit建立shell檔案

利用gedit建立名為work1的shell檔案

gedit work1.sh
字串的擷取有很多種方法

這裡我們就輸入hello world 然後擷取world就行了

#!/bin/bash

read -p "input 'hello world !' :" var #儲存輸入的字串於var中

substr=$ #擷取第乙個空格後面的字串保留至substr中

echo $ #輸出擷取後的字串substr

將上面這個**放進work1中然後儲存關掉

再在終端中輸入

chmod +x work1.sh

./work1.sh

來給予其許可權來執行

這樣就完成了簡單的shell字串的擷取啦

C 簡單建立和刪除資料夾

文章 c 中對資料夾操作需要用到directory class。其中提供了建立 刪除 移動 列舉等靜態方法。該類不能被繼承。以下 實現了建立資料夾。if directory.exists spath 以下是msdn上directory class的sample code。以下 首先檢查指定的資料夾是...

VC 資料夾的建立和資料夾的刪除總結

假設我想判斷c program files中有沒有乙個名為hotel的資料夾,有的話就什麼也不做,沒有的話就建立乙個名為hotel的資料夾,請問這個 應該怎麼寫呢?能建立乙個隱藏的資料夾更好 答案 bool createdirectory lpctstr lppathname,directory n...

php遞迴建立和刪除資料夾

目錄生成類 utilsmakedir author yepeng since 2010.3.18 class utilsmakedir path array shift patharray self basepath self basepath.path if is dir self basepat...