How to rename files and folders?
Answers were Sorted based on User's Feedback
Answer / shiva
mv <old filename> <new filename>
mv <old foldername> <new foldername>
| Is This Answer Correct ? | 22 Yes | 5 No |
Answer / siva
example:
if u wanna convert "old" into "new"
then....
command:
rename old new old
hint:
type ur "new name" between "old name".
| Is This Answer Correct ? | 14 Yes | 6 No |
Answer / rahul rai
$:>cat > first
this is my first file.
my name is rahul rai.
i am doing MCA.
To rename file "first" with the name "second" we can use
the following command .
$:>rename first second first
$:>cat second
this is my first file.
my name is rahul rai.
i am doing MCA.
| Is This Answer Correct ? | 5 Yes | 7 No |
fork in unix ?
What is awk good for?
How we will execute previous command in vi editor?
How to replace the exact word in vi editor?? suppose a file contains words like amaze,amazed,amazement in some of the line.But i want to replace only 'amaze' with delight but don't wanna replace amazed or amazement. thanks
6 Answers Polaris, Tech Mahindra,
What does awk stand for?
Explain the terms ‘system calls’ and ‘library functions’ with respect to unix commands?
Why is awk called awk?
What does find command return in unix?
What does the md command do?
What does the command '$ls | wc –l > file1' do?
What do chown command do?
what are wild cards?