2017年7月18日 星期二

[Linux 常見問題] How do I rename the extension for a batch of files?

Source From Here 
Question 
In a directory, I have a bunch of *.html files. I'd like to rename them all to *.txt by using the bash shell. 

How-To 
- test.sh 
  1. #!/bin/sh  
  2. for file in *.html; do  
  3.     new_ft=${file%*.html}  
  4.     echo "$new_ft"  
  5.     mv "$file" "${new_ft}.txt"  
  6. done  
Supplement 
How do I rename the extension for a batch of files? 
鳥哥 - 認識與學習 BASH: 變數內容的刪除、取代與替換 

沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...