I was trying this command...am I going correct? other there is better way


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users I was trying this command...am I going correct? other there is better way
# 1  
Old 04-19-2013
I was trying this command...am I going correct? other there is better way

I was trying to copy all debs from apt cache to some storage location and I was taking this approach...

Code:
/var/cache/apt/archives# ls -1 | grep -v jdownloader | fgrep .deb | xargs cp /media/eshant/L-STORE/Softwares/openjdk/

an error bla_bla.deb is a not directory stalled me

Suggestions please...
# 2  
Old 04-19-2013
Do any of the file names have embedded blanks? That's my first guess as cause of problem.
Code:
ls | grep -v jdownloader | fgrep .deb | grep " "

# 3  
Old 04-19-2013
You can try this pax :
Code:
cd /var/cache/apt/archives
pax -rw -s '/jdownloader*//' *.deb /media/eshant/L-STORE/Softwares/openjdk/

# 4  
Old 04-19-2013
Quote:
Originally Posted by hanson44
Do any of the file names have embedded blanks? That's my first guess as cause of problem.
Code:
ls | grep -v jdownloader | fgrep .deb | grep " "

no there is none such pattern
# 5  
Old 04-19-2013
That surprises me. Smilie The reason I suspected is as follows:
Code:
$ ls -1
xxx
yyy
zzz zzz

Code:
$ ls | grep " "
zzz zzz

Code:
$ ls -1 | xargs cp /tmp/
cp: target `zzz' is not a directory

Are you seeing same error message? What exact error message do you see?

Any chance other "funny" character (besides a blank) in the file names? Try something like:
Code:
ls | grep "[[:cntrl:]]"

# 6  
Old 04-19-2013
Use below command :

cd to that directory ;

Code:
find . ! -name "*jdownloader*" -name "*.deb" -exec cp {} /media/eshant/L-STORE/Softwares/openjdk/ \;

Let me know if it works ..I am not sure why your command is not working. I also checked but facing same problem for your command. But try find command to get it done.

Last edited by Scott; 04-21-2013 at 05:07 PM.. Reason: Code tags
# 7  
Old 04-21-2013
Quote:
Originally Posted by linuxconcepts
Use below command :

cd to that directory ;

find . ! -name "*jdownloader*" -name "*.deb" -exec cp {} /media/eshant/L-STORE/Softwares/openjdk/ \;

Let me know if it works ..I am not sure why your command is not working. I also checked but facing same problem for your command. But try find command to get it done.
That will work.
It will also solve the primary problem: xargs appends arguments to the given one, while cp needs the given destination last.

Last edited by MadeInGermany; 04-21-2013 at 02:42 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Id command does not return correct username

On server1 the "id" command works fine and returns "myuser" user as was expected. Below are the details of the good server. $ id -nu 501 myuser $ cat /etc/system-release Red Hat Enterprise Linux Server release 7.6 (Maipo) $ uname -a Linux server1 3.10.0-957.el7.x86_64 #1 SMP Thu Oct 4... (10 Replies)
Discussion started by: mohtashims
10 Replies

2. OS X (Apple)

Can't figure out the correct syntax for a command loading a webkit plugin

Hello, Using Bash on Mac OS X 10.7.5 (Lion). I downloaded a GrowlSafari plugin for Webkit from its GitHub page GitHub - uasi/growl-safari-bridge: GrowlSafariBridge enables arbitrary javascript (including Safari Extensions) to notify via Growl.. In the description it says that after installing for... (0 Replies)
Discussion started by: scrutinizerix
0 Replies

3. Shell Programming and Scripting

How to auto correct a failing command?

If a command is not found, e.g. nawk, this is how I fix the problem ] && NAWK=/usr/bin/gawk ] && NAWK=/usr/bin/nawk ] && NAWK=/usr/bin/awkI use $NAWK an the set the appropriate value based on the system it runs. How can I implement a similar fix for a command found but illegal argument.... (6 Replies)
Discussion started by: mohtashims
6 Replies

4. Shell Programming and Scripting

CUT command not giving correct result inside loop

Hi, i have a source file and have 3 columns and separated by "|" .i want to split this 3 columns in different variable.When i am executing this values indivisually giving correct result but when the same execute inside a for loop,it's giving issues. Src file(jjj.txt) -------... (8 Replies)
Discussion started by: raju2016
8 Replies

5. Shell Programming and Scripting

LS command does not list the correct file

Hi, I am logged into as root & inside the home directory of another user. ls -a # ls -laq total 44 drwx------ 4 user1 adm 4096 Nov 23 05:10 . drwxr-xr-x. 12 root root 4096 Nov 22 13:05 .. -rw-r--r-- 1 user1 adm 18 Nov 22 13:05 .bash_logout -rw-r--r-- 1 user1 adm 193 Nov... (2 Replies)
Discussion started by: mohtashims
2 Replies

6. Shell Programming and Scripting

Wget and correct zip for command

If there were 3 files put in a folder on /Desktop/Test then transferred to a site. would gzip -r /Desktop/Test zip them so that wget --http-user cmccabe --http -passwd xxxx*** https://something.sharefile.com/login.aspx -O - | tar -zxf - could be used to connect to the site, login,... (6 Replies)
Discussion started by: cmccabe
6 Replies

7. SuSE

Is this iostat pipe to sort service request command correct?

Hi, my os is SLES 10 from sort iostat as my output does not include rkB/s and wkB/s I probably have to adjust the key position, so is the following iostat pipe to sort service request command correct? oracle@vmc_stallite:~> iostat -x | sort -nrk11 sda 0.96 ... (4 Replies)
Discussion started by: jediwannabe
4 Replies

8. Shell Programming and Scripting

Check my script and correct the find command if wrong

Hello All, Here I am trying to find all the directories whose name starts with EFS or HOTFIX like in below example and below is my code but I don’t know why this is not working correctly. drwxr-xr-x 3 qabuild denccefs 4096 Sep 23 21:36 EFS110929A_SOURCE/ -rwxrwxr-x 1 qabuild... (2 Replies)
Discussion started by: anuragpgtgerman
2 Replies

9. UNIX for Dummies Questions & Answers

Is this grep command correct?

Hi I need to know if I have got the following grep command correct. I wanted to find from myfile.txt all signed real numbers (e.g. +5.0, -78, but not 5.0, 5 are not). I have thought about it and decided it was this: grep '' myfile.txt but I was wondering if this was correct. If... (2 Replies)
Discussion started by: rushhour
2 Replies

10. UNIX for Dummies Questions & Answers

Correct switches for xterm command to make font larger

Dear Sirs Whenever I bring up an xterm window on my laptop running Mandrivia Linux, the font in the xterm window is so small that it is practically unreadable ! What switches do I need to use with the xterm command xterm -?? in order to make the font larger ? (3 Replies)
Discussion started by: kanejm
3 Replies
Login or Register to Ask a Question