Tagged Questions
The mv tag has no wiki summary.
34
votes
2answers
9k views
Is it possible to move/rename files in git and maintain their history?
I would like to rename/move a project subtree in git moving it from
'/project/xyz' to '/components/xyz'
If I use a plain 'git mv project components' then all the file history for the xyz project ...
9
votes
4answers
6k views
Is there a way to make mv create the directory to be moved to if it doesn't exist?
So, if I'm in my home directory and I want to move foo.c to ~/bar/baz/foo.c , but those directories don't exist, is there some way to have those directories automatically created, so that you would ...
7
votes
2answers
845 views
4
votes
2answers
400 views
How do the UNIX commands mv and rm work with open files?
If I am reading a file stored on an NTFS filesystem, and I try to move/rename that file while it is still being read, I am prevented from doing so. If I try this on a UNIX filesystem such as EXT3, it ...
4
votes
2answers
242 views
How can I rewrite history so that all files are in a subdirectory?
I have a project under git. One day I moved all project files from current directory to foo/bar/ under the project. I did it using git mv. Then I added some more files and did some changes to already ...
3
votes
1answer
44 views
Removing part of a filename with mv
How would I rename all -m.css files to .css with the shell utility mv?
3
votes
3answers
211 views
git diff on moved file?
I moved a file using git mv. Now I would like to do a diff on the new file compared to the old file (with the old inexistent name).
What to do?
Cheers
jeroen.
3
votes
4answers
3k views
How to move a directory
my old and new directory have same folders and files inside.
I try "mv -if old/* new/"
and get error
mv: cannot move `./xxxxxx' to a subdirectory of itself
How can I move it ? (Centos 5)
thanks.
2
votes
2answers
65 views
What is the advantage of Model-View-Controller (MVC) over Model-View?
Could anyone give an example of why it would be advantageous to use MVC instead of a simpler Model and a View only.
Note: whether it's called MVC or MVP (Model-View-Presenter), I'm talking about the ...
2
votes
2answers
46 views
Moving multiple files in subdirectories (and/or splitting strings by multichar delimeter) [bash]
So basically, I have a folder with a bunch of subfolders all with over 100 files in them. I want to take all of the mp3 files (really generic extension since I'll have to do this with jpg, etc.) and ...
2
votes
4answers
75 views
Rename directories from abc.folder.xyz to folder.xyz
Say I have a directory with a bunch of site names in it.
i.e.
dev.domain.com
dev.domain2.com
dev.domain3.com
How can I rename those to <domain>.com on the linux cli using piping and/or ...
2
votes
4answers
109 views
Is there any shortcut to reference the path of the first argument in a MV command?
I often find myself using mv to rename a file. E.g.
mv app/models/keywords_builder.rb app/models/keywords_generator.rb
Doing so I need to write (ok, tab complete) the path for the second parameter. ...
2
votes
3answers
359 views
Unix: command for sudo-mv-chown combo?
I am operating as sudo in a system where I mv a great amount of files and dirs to and fro. Is there a command for the combo?
$ sudo -i; # mv hello /home/other; # chown -R other:other ...
2
votes
6answers
6k views
How to rename with prefix/suffix?
How do I do mv original.filename new.original.filename without retyping the original filename?
I would imagine being able to do something like mv -p=new. original.filename or perhaps mv ...
1
vote
4answers
26 views
Bash rename zips in subdirectories
Hi have a bunch of folders with one zip file in it the paths look like this
/folder/subfolder/archive.zip
/folder/subfolder1/archive1.zip
/folder/subfolder2/archive2.zip
/folder/subfolder3/zip3.zip
...
1
vote
1answer
268 views
Mercurial hg mv doesn't move all files
Probably an easy one but I haven't dug up anything with the usual search queries so I thought I'd ask here. Basically I'm trying to rearrange my repo; for example:
mkdir test
hg mv DirectoryOfStuff ...
1
vote
6answers
310 views
Rename files using sed and mv
I want to rename files in the format:
img_MM-DD-YY_XX.jpg
img_MM-DD-YY_XXX.jpg
to:
newyears_YYYY-MM-DD_XXX.jpg
Where:
YYYY = year
MM = month
DD = day
XXX or XX = photo number
...
1
vote
3answers
2k views
How to use 'mv' command to move files except that in a specific directory?
I am wondering how could I move all the files in a directory except those files in a specific directory, since 'mv' does not have a '--exclude' option.
1
vote
2answers
88 views
Unix invoke script when file is moved
I have tons of files dumped into a few different folders. I've tried organizing them several times, unfortunatly, there is no organization structure that consistently makes sense for all of them.
I ...
1
vote
6answers
288 views
Unable to convert dot-files to non-dotfiles safely
I run unsuccessfully in Mac
mv .* *
and
mv .* ./*
My files disappeared into thin air.
How can you convert dot-files to non-dotfiles safely?
1
vote
5answers
1k views
Moving Files and Folders Accidentally to Non-existent Places
I often do the command such as:
mv folder $something_that_does_not_exist
mv files* $something_that_does_not_exist
Then, I realise that my files are gone. I cannot see them even in the folder ...
0
votes
2answers
74 views
Perl Scripting: Running mv as external command
I'm trying to run this command as a part of my perl script:
`mv $n1 ../out`
where $n1 is a file name i'm getting from a previous subroutine.
I'm getting a error as below:
mv: missing destination ...
0
votes
1answer
51 views
Bash: mv: target specified is not a directory
For some reason mv doesn't work properly in my bash script.
This script should rename mp3 files with spaces
ls *mp3 > ls2.txt
while read line
do
sed_name=$(echo $line | sed 's/ /_/g' | ...
0
votes
1answer
38 views
find command moves files but then files become inaccessible
I ran the following command in a parametrized version of a script:
Script1 as
Nooffiles=`find $1 -mmin $2 -type f -name "$3"|wc -l`
if test $Nooffiles -eq 0
then
exit 1
else
echo "Successful"
find $1 ...
0
votes
1answer
91 views
lowercase or rename all files in a directory on Mac OS X
After putting hours into this, I give up, and am asking for help. This has been answered perfectly in a previous SO question here: How do I rename all files to lowercase?
The trouble is, it does not ...
0
votes
1answer
49 views
Bash script removing files unexpectedly
I have this script that I'm running to rename all the files in a folder to "1.png", "2.png", etc, but sometimes it will completely erase (or move the file somewhere else, I have no idea what's ...
0
votes
2answers
119 views
Rename directories with fileutils in Ruby
While renaming a set of directories I end up wit ha strange error
I call FileUtils with success for many folders, and subfolders.
But when I try it on subsubfolder I get a strange error.
Just before ...
0
votes
1answer
35 views
Exposing the return of method into a property
How can i expose the return of my method in to a class property?
public class BIContactLib: ContactLib
{
//Expose it here.. to replace the code below
public IEnumerable<BIContactLib> ...
0
votes
3answers
72 views
What's the most efficient way to move multiple wildcards in bash?
What's the most efficient way to rewrite the following:
mv *.jpg ~/Pictures && mv *.gif ~/Pictures && mv *.png ~/Pictures
0
votes
0answers
13 views
Moved files and need to find location [closed]
I was moving some files into a directory and accidently did mv file.jpg * and now all the files are missing. Where did it move them to? I'm on Mac OS X. Anyway do undo this?
0
votes
3answers
97 views
mv: invalid option — '0'
How can I rename files with "-" in front of the filename, for example: "-0001.jpg"
Everyime I try to run:
for i in *; do mv "$i" "${i//-/}"; done
or:
for i in *; do mv "$i" "${i#*-}"; done
I ...
0
votes
2answers
133 views
Glob renaming in bash
I'm fairly new to bash so sorry if this is kind of a basic question. I was trying to rename a bunch of mp3 files to prepend 1- to their filenames, and mv *.mp3 1-*.mp3 didn't work unfortunately. So ...
0
votes
3answers
271 views
git: mv command
i've read that the mv command is basically the same as
$ mv README.txt README
$ git rm README.txt
$ git add README
just to be sure, is it exactly the same if i do it this way:
$ git rm --cached ...
0
votes
3answers
158 views
How to make disk quota full
I am in a situation where i have to test mv(1) command while disk quota is exceeded.
Can anyone let me know the steps to create this.. i mean how can i make disk quota full on normal Unix test ...
0
votes
2answers
82 views
MVC where should I validate my data?
I'm using the Zend Framework and I want to check that certain fields are not being submitted as null or empty. Where should I do this checking; model or controller?
Note, I'm not using Zend forms, I ...
0
votes
2answers
298 views
Moving files and directories to a sub-folder in UNIX
When I type
mv ../* .
mv: cannot move '../<dir name>' to a subdirectory of itself, './<dir name>'
How does the shell/mv command detect this behaviour?
0
votes
1answer
118 views
How to emulate cp and mv --parent on osx
Osx mv and cp does not have the --parents option, so how does one emulate it ?
I.e. mv x/y/a.txt s/x/y/a.txt when s is empty gives a no directory found error unless one does a mkdir first which is ...
0
votes
4answers
413 views
How to Ensure file copy integrity in Ubuntu
In Ubuntu if a file /A/largefile.foo is moved via 'cp' or 'mv' to /B/largefile.foo, how can I ensure that the entire file is written before attempting to move the file a second time to ...
0
votes
1answer
331 views
mvc-Ajax.ActionLink Opens page on new window
I have a view with Ajax.ActionLink which calls a controller action and returns a partial view.And i have given UpdateTrargetId as id of div.Now when i click on this link ,view opens on a new page ...
0
votes
2answers
605 views
bash script problem, find , mv tilde files created by gedit
im using linux with gedit which has the wonderful habit of creating a temp file with a tilde at the end for every file I edit.
im trying to move all of these files at once to a different folder using ...
0
votes
1answer
73 views
How can I stop an auto-generated Linq to SQL class from loading ALL data?
DUPLICATE of http://stackoverflow.com/questions/2433422/how-can-i-stop-an-auto-generated-linq-to-sql-class-from-loading-all-data
post answers there!
I have an ASP.NET MVC project, much like the ...
0
votes
3answers
267 views
CAMEL is processing the file before the “mv” command completes
We are facing a problem in our monitor script.
The flow of the program is
Customer ftp/sftp the file (in .csv format) to "source" directory
Bash script renames the completed .csv file to .aaa file
...
0
votes
1answer
277 views
Unable to move all files except directories to a folder in terminal
I have extended regexes enabled in my Bash by
shopt -s extglob
They may be useful in solving the problem.
I run the following unsuccessfully, since it moves also directories
$ mv `find . ...
0
votes
3answers
277 views
Unable to move pictures from Desktop to a specific folder
I have pictures from Picture_1.png to Picture_77.png in my Desktop.
I am now at a folder called Pictures in terminal. I would like to move the pictures to the folder where I am at the moment.
I ...
-1
votes
2answers
38 views
simultaneously moving a file and changing permissions
In Linux, when I use mv, the new file retains the same permissions. I would like to mv a file, but after the move, by the owner of the new file. Is this possible?