if i want to rename file in terminal . it's file .ogg like = desktop-login.ogg
if i want to rename it to name desktop-009.ogg how is the correct command ?
if i want to rename file in terminal . it's file .ogg like = desktop-login.ogg
if i want to rename it to name desktop-009.ogg how is the correct command ?
Code:mv desktop-login.ogg desktop-009.ogg
"mv" as in "move", there's no renaming tool as moving file has the same effect. Execute in the same directory where the files are, or use full paths:Code:mv desktop-login.ogg desktop-009.ogg
Code:mv /path/to/desktop-login.ogg /path/to/desktop-009.ogg
Thank you so much for help me. for human being
Bookmarks