LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 03-26-2006, 01:12 PM   #1
gbowden
Member
 
Registered: Dec 2003
Location: Spain
Distribution: Slackware 14.1 64bit - multilib
Posts: 148

Rep: Reputation: 28
mv with progress bar


Does anyone know if there is a mv command which displays a progress bar, like wget?
 
Click here to see the post LQ members have rated as the most helpful post in this thread.
Old 03-26-2006, 02:13 PM   #2
jlliagre
Moderator
 
Registered: Feb 2004
Location: Outside Paris
Distribution: Solaris 11.4, Oracle Linux, Mint, Debian/WSL
Posts: 9,789

Rep: Reputation: 492Reputation: 492Reputation: 492Reputation: 492Reputation: 492
Catenate with progress, found in this page: http://www.ex-parrot.com/~chris/software.html is close to what you are looking for.
 
Old 03-26-2006, 02:18 PM   #3
gbowden
Member
 
Registered: Dec 2003
Location: Spain
Distribution: Slackware 14.1 64bit - multilib
Posts: 148

Original Poster
Rep: Reputation: 28
Thanks for you help.
 
Old 05-16-2010, 12:28 PM   #4
talavishay
LQ Newbie
 
Registered: May 2010
Posts: 3

Rep: Reputation: 2
try RSYNC

with a simple alias in your .bash_alias you'll get the same functionality your looking for..

alias rsynccopy="rsync --partial --progress --append --rsh=ssh -r -h "
alias rsyncmove="rsync --partial --progress --append --rsh=ssh -r -h --remove-sent-files"

obviously you can do it straight from the shell like this

user@server:/$ rsync --partial --progress --append --rsh=ssh -r -h --remove-sent-files SOURCE_FILE DESTINATION

OR ( with the alias )

user@server:/$ rsyncmove SOURCE_FILE DESTINATION

some versions of RSYNC use a different syntax..
check the "rsync --help" for more info ..

Last edited by talavishay; 05-16-2010 at 12:41 PM. Reason: typo mistake + more info..
 
2 members found this post helpful.
Old 05-16-2010, 03:13 PM   #5
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,692

Rep: Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972
Quote:
Originally Posted by talavishay View Post
with a simple alias in your .bash_alias you'll get the same functionality your looking for..

alias rsynccopy="rsync --partial --progress --append --rsh=ssh -r -h "
alias rsyncmove="rsync --partial --progress --append --rsh=ssh -r -h --remove-sent-files"

obviously you can do it straight from the shell like this

user@server:/$ rsync --partial --progress --append --rsh=ssh -r -h --remove-sent-files SOURCE_FILE DESTINATION

OR ( with the alias )

user@server:/$ rsyncmove SOURCE_FILE DESTINATION

some versions of RSYNC use a different syntax..
check the "rsync --help" for more info ..
Great....but this is a FOUR YEAR OLD THREAD, and the OP wasn't looking for info on rsync.
 
Old 05-17-2010, 03:18 AM   #6
talavishay
LQ Newbie
 
Registered: May 2010
Posts: 3

Rep: Reputation: 2
Thumbs down move files with progress bar

Quote:
Originally Posted by TB0ne View Post
Great....but this is a FOUR YEAR OLD THREAD, and the OP wasn't looking for info on rsync.
i was googling for "move files with progress bar" & this post came up...
thought i would go back here and post once i have found a solution for my quest..
what R U ? the time keeper??? + what R U tring to say ? extra info is bad..
jeezzz i was just trying to help , this is my first post here , thanks for the welcoming greeting..

WHATEVER...
 
Old 05-17-2010, 03:34 AM   #7
catkin
LQ 5k Club
 
Registered: Dec 2008
Location: Tamil Nadu, India
Distribution: Debian
Posts: 8,578
Blog Entries: 31

Rep: Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208
Quote:
Originally Posted by talavishay View Post
i was googling for "move files with progress bar" & this post came up...
thought i would go back here and post once i have found a solution for my quest..
what R U ? the time keeper??? + what R U tring to say ? extra info is bad..
jeezzz i was just trying to help , this is my first post here , thanks for the welcoming greeting..

WHATEVER...
Welcome (!) to LQ and thanks for giving detailed information to help others -- that's what the community part of FOSS is all about

Someone netsearching for something like the OP's question might have found this thread and have their question answered by your post.

On the other hand, here are a couple of reasons for not adding to old threads:
  • They get stale -- software itself changes and older links are less likely to work.
  • Someone netsearching for a solution might only look at threads marked SOLVED. The older a thread, the less likely that the OP will come back and mark it SOLVED.
 
Old 05-17-2010, 09:24 AM   #8
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,692

Rep: Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972
Quote:
Originally Posted by talavishay View Post
i was googling for "move files with progress bar" & this post came up...thought i would go back here and post once i have found a solution for my quest..what R U ? the time keeper??? + what R U tring to say ? extra info is bad..jeezzz i was just trying to help , this is my first post here , thanks for the welcoming greeting..
WHATEVER...
Please read the "How to ask questions the smart way" thread that's on here. Really, posting an answer to a 4 year old thread is pointless. The OP will have either figured it out, or have moved on by then. Asking in the thread "Hey, I'm looking for the same thing, anyone figure this out?" would have been far better.

The 'answer' you posted did not address the original question in any way, which is the actual issue.
 
Old 05-17-2010, 09:43 AM   #9
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
And no offence, but PLEASE don't use texting speak.

IMO it's hard to read and very immature and annoying.
 
Old 06-25-2010, 02:44 PM   #10
lennartz
LQ Newbie
 
Registered: Jun 2010
Location: netherlands
Distribution: Ubuntu
Posts: 3

Rep: Reputation: 0
Thumbs up

Quote:
Originally Posted by talavishay View Post
with a simple alias in your .bash_alias you'll get the same functionality your looking for..

alias rsynccopy="rsync --partial --progress --append --rsh=ssh -r -h "
alias rsyncmove="rsync --partial --progress --append --rsh=ssh -r -h --remove-sent-files"

obviously you can do it straight from the shell like this

user@server:/$ rsync --partial --progress --append --rsh=ssh -r -h --remove-sent-files SOURCE_FILE DESTINATION

OR ( with the alias )

user@server:/$ rsyncmove SOURCE_FILE DESTINATION

some versions of RSYNC use a different syntax..
check the "rsync --help" for more info ..
Thanks talavishay, I came here through Google and this was indeed what I was looking for. Rsync is great, you can also use it for this purpose.

This is also my first post here, so I also registered here because of your input. So..not pointless at all.

TY!
 
Old 07-03-2010, 02:49 AM   #11
sgentle
LQ Newbie
 
Registered: Jul 2010
Posts: 1

Rep: Reputation: 0
Hey talavishay, I too came to this thread looking for a way to move with a progress bar. I hadn't thought of using rsync, so thank you.

If you haven't already abandoned this community, I hope you read this and stay to see its good side. It can be hard to contribute to something like Linux when sometimes small people yell at you for no reason. The Linux community, like every community, is full of lots of different people, and I hope you don't let a loud irritated few speak for the quiet grateful many.

For what it's worth, MTK is right in that people will take you more seriously if you use proper grammar and spelling. It's your choice, but since it's a convention basically everywhere important you're likely to communicate, I think it's a habit worth getting into.

Anyway, thanks again for your efforts. You've helped me and probably many others.^‚
ìþÄý
 
Old 11-16-2010, 06:52 AM   #12
jrave
LQ Newbie
 
Registered: Jan 2006
Posts: 6

Rep: Reputation: 0
Thanks talavishay!

Exactly what I was asking for. Your responce answers my question exactly - which was the same as the OP's.

wait, I said OP - like many others do here - is that text talk?
 
Old 11-17-2010, 12:09 AM   #13
talavishay
LQ Newbie
 
Registered: May 2010
Posts: 3

Rep: Reputation: 2
your more then welcome !!

by OP i think they mean Original Poster ..

oh .. and thanks everybody for the nice words on my behalf ..
 
Old 10-04-2011, 02:47 PM   #14
edderick
LQ Newbie
 
Registered: Oct 2011
Posts: 1

Rep: Reputation: Disabled
Thumbs up Thanks to talavishay

I would also like to thank talavishay for his very useful answer.

Thanks

 
Old 01-06-2012, 11:43 AM   #15
joshua.lyon
LQ Newbie
 
Registered: Jan 2012
Posts: 1

Rep: Reputation: Disabled
I also found this thread via a Google search and found talavishay's answer to be satisfactory. As such I registered on the forum just to post this reponse. I tend to find the reasoning as to why people shouldn't post answers on old threads quite humorous.

As is the case with this thread, people often use Google to find answers to their questions which can lead them to old threads or blog postings. This is the same reason I often update my old blog posts with new information or links to updated information.
 
  


Reply

Tags
mv, progress, rsync



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
cp progress bar edwardsiow Linux - General 26 09-04-2011 08:53 AM
cp with progress bar? Rotwang Linux - General 5 04-27-2005 07:49 PM
Progress bar image craigs1987 Fedora 0 05-27-2004 02:31 PM
cp: progress bar chii-chan Linux - General 2 10-30-2003 06:30 PM
Progress Bar zael Programming 3 10-01-2003 12:20 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 11:04 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration