How do you rename the files(*.sh) with file names containing space in it?for example "interview question.sh" needs to rename to "interview-question.sh".
Appreciate your inputs.Thanks.
Answer Posted / abc
For single file, you can do following command;
mv "interview question.sh" interview-question.sh
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Please give me example of " at command , contrab command " how to use
What is the significance of the shebang line in shell scripting?
Can we run shell script in windows?
Calculate a real number calculation directly from the terminal and not any shell script.
How does shell scripting work?
What are the different communication commands available in the shell?
Explain about return code?
How do you debug a script?
What does .sh file contain?
What is a boot block?
What is the difference between grep and egrep?
Is shell a part of kernel?
Can you write a script to portray how set –x works?
How to print all array elements and their respective indexes?
What does $1 mean in bash?