2013-03-05 63 views

回答

1

該腳本可以很簡單,如下:

$!/bin/bash 
shopt -s nullglob # To return nothing if there is no match. 
echo *$1* 

然後只是把它作爲script.sh questi

1

這是可能的使用find

find /path/to/directory -type f -iname "*questi*" 

選項-type f僅導致文件被退回,並-iname做的水珠*questi*不區分大小寫的匹配,所以應該返回「question1.txt」,'five_questions。 TXT」等

如果你願意,你可以把它放進一個shell腳本,像這樣:

#!/bin/sh 
find $1 -type f -iname "*$2*" 

而且這樣稱呼:filefind.sh /path/to/directory questi

相關問題