mv is the Unix command to rename or move a file or directory.
0
votes
1answer
16 views
How to move files in different directories in linux (cui)
I am currently working on an exercise in the Command Line Crash Course (http://cli.learncodethehardway.org/book/ex11.html)
So far I learned and understand how to copy (cp) and move (mv) directories ...
0
votes
2answers
19 views
Switching Files Between Directories with CUI (mv command)
I am currently working through "The Command Line Crash Course" and am having trouble switching files to my desktop.
In the terminal I create a new file (awesome.txt).
I see awesome on my desktop and ...
0
votes
0answers
19 views
Want to move file over network (not copy) [migrated]
I would like to move file on network [Linux].
This is not working:
mv {file} user@machine:/
How can I do this?
And I prefer not using scp command to first copy and delete.
6
votes
0answers
40 views
How to move folder in unix using mv, only when target is on the same drive [migrated]
I need to move a folder using unix mv command, but only if the target is in the same drive or the same filesystem. What would be the best approach?
-1
votes
5answers
46 views
Unix Command Files [closed]
I've looked everywhere and asked my instructor many times, but I can't get the answer to this one so I'm finally reaching out...
I am supposed to copy the unix command files: ls, mv, and bash from ...
0
votes
1answer
36 views
UNIX - Moving a deleted file back to it's original directory
All I want to do is move a file from my created recycle bin to it's own original path.
My code is as follows:
#!/bin/bash
restore ()
{
base=`basename $restore_file | cut -d"_" -f1`
echo "Your ...
0
votes
0answers
29 views
Moving a deleted file back to it's original directory
Very simply put, I'm trying to move a deleted file back into it's original path.
Here's my code
#!/bin/bash
restore ()
{
base=`basename $restore_file | cut -d"_" -f1`
echo "Your file $base has ...
0
votes
1answer
52 views
Batch rename files using mv and sed within a for loop results in exit code 64 - How do I correct the script?
I am attempting to rename several hundred folders to remove numbers that are prefixed to the folder name. I seem to have gotten most of the way there, but my script does not quite work yet. When I ...
1
vote
1answer
109 views
mv a file that contains spaces from a shell script
I am trying to mv a file (rename it to replace spaces with dashes). If I pass the source and dest arguments without quotes, the source is broken up because mv thinks it is the end of the argument. If ...
0
votes
1answer
60 views
Want to move a file to a folder in Shell Script but whilst doing so have a version number appended to it
The script will move the file (in the RecycleBin) but I want the version number appended to it. The version number cosists of: current month, date, year, hour, minute and second:
So the file should ...
0
votes
0answers
41 views
copy over 100 files at a time with xarg or script?
I have over 1.3M files in a dir and I need to move them from j:/hold to j:/hold2 (all while a java app 'watches' the dir for any files to drop in and process them) I cannot just 'rename' the dir ...
-1
votes
1answer
62 views
how to move all files in the same directory except one into that one in UNIX ssh [closed]
how to move all files in the same directory except one into that one in UNIX ssh?
for example. having backup directory and moving all other files into backup
thanks in advance
-1
votes
2answers
58 views
bash moving files with asterisk to another folder
I have issues trying to remove files within a folder that has similar wordings into another folder.... it's spitting back out saying that there's no such files or directory...
This is what I'm doing:
...
2
votes
1answer
74 views
Why did my /var directory disappear after running mv var var? [closed]
I accidentally ran the command "mv var var" (instead of "mv var var.bak"). Now my var directroy has disappeared. It's not in "/" anymore. Does anyone know what happens when entering this command. ...
0
votes
2answers
104 views
Find/Match variable filenames and move files to respective directory
I've never come to SO asking "Do my homework" but I really don't know where to start with this one.
I have a load of documents which are dumped in a directory after being auto-signed using JSignPdf ...
0
votes
0answers
31 views
fuse - distinguish between cp and mv call
as far as I know, fuse maps the cp and mv call to this:
$cp path1 path2
getattr(path1)
getattr(path2)
open(path1)
if(path2) exists then
open(path2)
truncate(path2)
else
mknod(path2)
do:
...
4
votes
1answer
138 views
What does “mv file1 *.file1” do?
When I issue the command
mv file1 *.file1
in the directory where file1 is located, it disappears. Where does it end up? I know * is a valid character in file names under Linux and that I should ...
0
votes
2answers
198 views
Find files, rename in place unix bash
This should be relatively trivial but I have been trying for some time without much luck.
I have a directory, with many directories in, each with their own structure and files.
I am looking to find ...
0
votes
1answer
72 views
MV* Framework for ASP.Net WebForms - Code Reuse
i'm working in a project that requires Asp.Net WebForms (is a migration of a huge .net 2.0 site with no time to reimplement in MVC) and asmx web services. When a page is requested is sent by the ...
0
votes
3answers
114 views
Recursively moving all files of a specific type into a target directory in Bash
How could I move all .txt files from a folder and all included folders into a target directory .
And preferably rename them to the folder they where included in, although thats not that important. ...
2
votes
1answer
363 views
shell “if” statement
I am new to unix and am practicing a simple script to unzip a load of files within a specified directory. I need the program to move the zipped file into another folder when it is done unzipping it ...
1
vote
1answer
136 views
massive rename on terminal and sequentially numbered
I want to rename a lot of files (some jpg and a lot of png files) I need them sequentially numbered on each folder have this structure:
.../folder01
file.png
file.jpg
.../folder02
...
-1
votes
2answers
123 views
mv command in aix [closed]
when i use mv command in aix to move a file to a destination directory ,it should fail if another file with the same name exists in that destination.
But what happens now is it replaces the file in ...
3
votes
4answers
133 views
How to move a given number of random files on Unix/Linux OS
I'm facing this simple task but, I'm also wondering about what's the easiest and short way to do it.
My proposal is move a given numer of random files from a directory to another. This task is part ...
0
votes
1answer
392 views
Backbone nested views - child view attributes incorrectly set in the template
I'm trying to create a Backbone Model (lets call it Library) which contains a Collection of other Models (lets call them Books). I am providing a view - LibraryView, which creates an HTML of a book ...
2
votes
0answers
119 views
Bash script “mv” makes a copy? [closed]
I'm writing my first Bash script and this puzzles me:
sdir="/Applications/MAMP/htdocs"
echo "... downloading skeleton ..."
wget -q -P $sdir --no-check-certificate https://github.com/xxx/master.zip
...
0
votes
2answers
1k views
How to use mv command to rename multiple files in unix?
I am trying to rename multiple files with extension xyz[n] to extension xyz
example :
mv *.xyz[1] to *.xyz
but the error is coming as - " *.xyz No such file or directory"
1
vote
2answers
62 views
Taking and renaming a created file via a pipe or other means in bash
First ever question:
Im quite new to this scripting business but I've been trying to automate downloading and renaming youtube videos using youtube-dl. I'm really just doing this as a technical ...
1
vote
1answer
39 views
on Linux, how to change file name from blah_m_n_12192012.txt to blah_m_n.txt
where m, n could be any number from 0 to 100, for example
blah_5_9_12192012.txt -> blah_5_9.txt
blah_4_35_12192012.txt -> blah_4_35.txt
I tried doing the following but it didn't work
mv ...
2
votes
2answers
59 views
git merge after file renamed
I have two files A and B in master. I created a branch feature where I modified both A and B. Then, someone else deleted B and renamed A to B in master (using git mv).
When I merge feature into ...
1
vote
1answer
134 views
Bash Variables containing filepaths
I'm writing a script that needs to find a file in a directory based on the user input. That file contains a filepath, and I need to use that filepath as a variable so I can use it later in a mv ...
2
votes
2answers
73 views
git diff --staged on moved file?
This question is the same as the following question:
git diff on moved file?
but with the important distinction that I want to see the changes between the version of the file in the previous commit, ...
0
votes
2answers
168 views
Move all directories except one to another folder, if they exist, leave all files behind
I'm trying to move some dirs from one location to another, but I need to leave one in place (all files will remain in place). I've tried several things, but nothing seems to work.
I have tested the ...
0
votes
1answer
35 views
Qt M/V Deligate
I want to show QDateTimeWidget when user selects the QTableView cell (Which contains datetime). I have written delegate. How can I know column type of using model index dynamically in delegate create ...
1
vote
1answer
211 views
find directories with exec conditional copy & delete [closed]
What I'm trying to accomplish is moving directories from one place to another. A mv however fails when the target already exists, and therefor the delete of the source also fails. So I'm trying to use ...
0
votes
1answer
129 views
How to append the timestamp of a process to the name of a file in Unix
I have a directory /home/user/ingest/ which has many files inside it with varying sizes. I need to move every file inside this folder into /home/user/ingest/inbox every two minutes. There might be a ...
0
votes
1answer
47 views
move filename with ()s using svn
How can I move a file with ()s in its name using svn. I tried:
svn mv https://subversion.assembla.com/svn/semiosnet/Test Protocol\ \(office\).docx ...
0
votes
0answers
126 views
php file handling on linux box (cp mv). Proper practice
I'm working on a Data Asset Manager and one functionality is obviously file handling. I've established a list of prerequisites for this system and was wondering if some were perhaps redundant. File ...
2
votes
1answer
626 views
script to move files from one directory to another
I have successfully changed my mail imap agent from dovecot to courier-imap, for some required features, how ever i am facing a problem during the maildrop/seive directory structure where i need to ...
3
votes
2answers
68 views
Move sets of files with date encoded names
I have a set of files that have dates in them.
lets call them:
a20120528_120001.log
b20120528_120003.log
(name)(year)(month)(day)_(hour)(minute)(second).log
It is easy enough to move these two ...
1
vote
2answers
336 views
unix command 'mv' failure
I am using move command mv -f $file1 $file2 to move a file from source directory to a destination directory. I am getting a failure message as:
mv: cannot create regular file $file2:File exists
...
2
votes
3answers
151 views
Moving a file with an unknown name
I have a bit of a dilemma on my hands. A company is sending CSV phone call data to my server (via SSH transfer) which I then need to move via cron job to a different directory.
An example of the ...
0
votes
1answer
131 views
Bash Script errors
Hey guys I'm getting an error right around my second nested else, I think it has something to do with moving the file to a folder with whitespace in its name, but I'm not sure, so I tried adding in ...
0
votes
2answers
317 views
Bash mv not a directory
I have part of my script that goes like this:
while read line
do
code=`echo ${line} | awk '{print $1}'`
awk -f ${supscript}/rearrange.sh < ${base}/${code}
mv temp_output* ...
0
votes
4answers
178 views
How can I recursively rename files via bash-scripting?
I'm trying to rename several different files in bash.
How to rename for example temp_1 to temp_01 until 09 (temp_9 to temp_09)?
I used sed but somehow didn't work.
I tried with this:
for i in ...
0
votes
2answers
352 views
bash script mv command not working
I'm trying to write a script that renames a file at login in OSX Lion.
Here is my script so far:
#!/bin/bash
if [ -f ...
0
votes
1answer
69 views
mv a file from system command using r
I have a directory which has 5 files named like this
A.abcd (1).txt
B.abcd (1).txt
C.abcd (1).txt
D.abcd (1).txt
E.abcd (1).txt
I want to change the names of the file so that they should become ...
3
votes
2answers
374 views
Executing 'mv A B': Will the 'inode' be changed?
If we execute a command:
mv A B
then what will happen to the fields in the inode of file A? Will it change?
I don't think that it should change just by changing the name of the file, but I'm not ...
0
votes
1answer
61 views
How to emulate “mv --no-clobber” in a batch file?
As the name implies, the --no-clobber (or -n) flag of the mv command (at least the Gnu version) causes the command to fail if the requested move would have overwritten an existing file.
How can this ...
0
votes
1answer
137 views
Access failed with cd and mput commands in shell script
I have written a shell script to take mysql database backup and at the same time connecting to other server using lftp and transferring backup to other server
I am able to connect to other server ...
