Tag: mv

Move files from Folder 2 Levels Deep

Use this command to move files from folders two level deep to the current folder… mv */*.* .

Move Subfolder Files to Current Folder

This command moves all the files in the subfolder to the current folder. mv */* .

Some File Operation in SVN

Moving, Coping and Deletion svn mv file.php to_folder/ #Move svn cp file.php to_folder/ #Copy svn rm file.php #Deletion