shell script to rename directory
substr in AWK to extract string[@more@]
#!/bin/bash
for file in *
do
showname=$file
if [ -d "$file" ] # Check if it's a directory.
then
# xxxx_report echo $showname | awk '{print substr($0,1,length($0)-7)}'
# cut ?only need xxxx
targetname=`echo $showname | awk '{print substr($0,1,length($0)-7)}'`
mv $showname $targetname
echo $file "has been changed"
fi
done
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/14377/viewspace-1030554/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Shell Script
- shell script
- Under the same directory(folder) copy or rename with the different extension name
- Shell Script(轉)
- Shell Script(bash)--用於自動備份的Shell Script(轉)
- shell script的簡單使用
- execute shell script from stored procedure
- 更新Android SDK 出錯 Failed to rename directory \temp\ToolPackage.old01.AndroidAIPackage
- Bourne shell script中的quoting
- Shell Script(bash)--教學例(轉)
- 20天學會bash shell script (二)
- 20天會學bash shell script(一)
- 20 天學會bash shell script (三)
- Linux程式設計-11.Shell Script(bash)--(3)用於自動備份的Shell Script(轉)Linux程式設計
- Shell Script to Calculate Values Recommended Linux HugePagesLinux
- 小的shell script進不同系統的
- PHP也可以當成Shell Script使用(轉)PHP
- RMAN Backup Shell Script Example (Doc ID 137181.1)
- shell script程式設計小結——附帶例項程式設計
- Oracle ASM User Directory and Group DirectoryOracleASM
- Linux程式設計-11.Shell Script(bash)--(1)簡介(轉)Linux程式設計
- rename函式功能函式
- Linux程式設計-11.Shell Script(bash)--(2)教學例(轉)Linux程式設計
- [shell] execute remote Script自動生成oracle awr report並mail出來REMOracleAI
- Move_or_Rename_the_Tempfile_in_OracleOracle
- php-rename()函式PHP函式
- Rename db_name for OracleOracle
- How to rename an Oracle stored procedureOracle
- How does one rename a database?Database
- Script
- MySQL 建表DATA DIRECTORY 、INDEX DIRECTORY 簡介MySqlIndex
- 請說說`<script>`、`<script async>`和`<script defer>`的區別
- shell指令碼編碼格式問題,bin/sh^M: bad interpreter: No such file or directory指令碼
- create directory in OracleOracle
- Script Browser & Script Analyzer 1.3更新發布
- MySQL rename table方法大全MySql
- How to Rename a Server That Is Not a Data Store ServerServer
- MySQL 的Rename Table語句MySql