Table of Contents

Linux Commands Cheat Sheet

How to use rename command in Linux

Options of rename command

# rename from to files


Examples

How do I rename all my .htm files to .html files?

# touch test1.htm
# touch test2.htm
# touch test3.htm
# ls
test1.htm  test2.htm  test3.htm
# rename .htm .html *.htm
# ls
test1.html  test2.html  test3.html
# 





Linux Commands Cheat Sheet