What is the name of the file after running the following com
What is the name of the file after running the following commands:
touch blood
mv blood thunder
Solution
the name of file after running the commands is : \" thunder \"
touch command changes the access time of the file if exists/else it creates if fle not exists
then \"mv\" command renames the file to \"thunder\"

