Last active
August 29, 2015 14:16
-
-
Save wbcyclist/c5819d96e5ad88f88e5c to your computer and use it in GitHub Desktop.
Revisions
-
wbcyclist revised this gist
May 7, 2015 . 1 changed file with 6 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,8 @@ # 将Game.Of.Thrones.S01.E01.BluRay.720p.mkv批量增加播放日期在BluRay前 # 如:mv Game.Of.Thrones.S01.E01.BluRay.720p.mkv Game.Of.Thrones.S01.E01.2011.BluRay.720p.mkv # 批量命令行打印 ls Game.Of.Thrones.S01* | awk -F "BluRay" '{print "mv\t" $0 "\t" $1"2011.BluRay"$2}' #执行: ls Game.Of.Thrones.S01* | awk -F "BluRay" '{print "mv\t" $0 "\t" $1"2011.BluRay"$2}'|sh -
wbcyclist revised this gist
May 7, 2015 . No changes.There are no files selected for viewing
-
wbcyclist renamed this gist
May 7, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
wbcyclist created this gist
Mar 3, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ 将Game.Of.Thrones.S01.E01.BluRay.720p.mkv批量增加播放日期在BluRay前 如:mv Game.Of.Thrones.S01.E01.BluRay.720p.mkv Game.Of.Thrones.S01.E01.2011.BluRay.720p.mkv 批量命令行打印:ls Game.Of.Thrones.S01* | awk -F "BluRay" '{print "mv\t" $0 "\t" $1"2011.BluRay"$2}' 执行:ls Game.Of.Thrones.S01* | awk -F "BluRay" '{print "mv\t" $0 "\t" $1"2011.BluRay"$2}'|sh