I know you can do it with a find, but is there a way to send the output of ls to mv in the unix command line?
|
2
|
|||||||||||||||
|
|
|
One way is with backticks:
Edit: however, this is fragile and not recommended -- see @lhunath's asnwer for detailed explanations and recommendations. |
||||||||||||
|
|
|
It is not a tool you should use to enumerate them and pass them to another tool for using it there. Parsing For a detailed document on the badness of parsing ls, which you should really go read, check out: http://mywiki.wooledge.org/ParsingLs Instead, you should use either globs or find, depending on what exactly you're trying to achieve:
The main source of badness of parsing The secondary source of badness of parsing
|
||
|
|
|
|
Check out |
||
|
|
You shouldn't use the output of ls as the input of another command. Files with spaces in their names are difficult as is the inclusion of ANSI escape sequences if you have:
for example. Always use find or xargs (with -0) or globbing. Also, you didn't say whether you want to move files or rename them. Each would be handled differently. edit: added -0 to xargs (thanks for the reminder) |
||||||
|
|
|
Not exactly sure what you're trying to achieve here, but here's one possibility: The "xargs" part is the important piece everything else is just setup. The effect of this is to take everything that "ls" outputs and add a ".txt" extension to it. $ mkdir xxx # $ cd xxx $ touch a b c x y z $ ls a b c x y z $ ls | xargs -Ifile mv file file.txt $ ls a.txt b.txt c.txt x.txt y.txt z.txt $ Something like this could also be achieved by:
$ touch a b c x y z
$ for i in `ls`;do mv $i ${i}.txt; done
$ ls
a.txt b.txt c.txt x.txt y.txt z.txt
$
I sort of like the second way better. I can NEVER remember how xargs works without reading the man page or going to my "cute tricks" file. Hope this helps. |
||||||
|
|
|
"Useless use of ls", but should work. By specifying the full path to ls(1) you avoid clashes with aliasing of ls(1) mentioned in some of the previous posts. The tr(1) command together with "xargs -0" makes the command work with filenames containing (ugh) whitespace. It won't work with filenames containing newlines, but having filenames like that in the file system is to ask for trouble, so it probably won't be a big problem. But filenames with newlines could exist, so a better solution would be to use "find -print0":
|
|||
|
|
|
None of the answers so far are safe for filenames with spaces in them. Try this:
You can of course use any glob pattern you like in place of |
||
|
|
|
|
Just use
..or..
You don't have to worry about colour in the ls output, or other piping strangeness - Linux allows basically any characters in the filename except a null byte.. For example:
..but find works perfectly:
|
|||
|
|
|
|
Backticks work well, as others have suggested. See xargs, too. And for really complicated stuff, pipe it into sed, make the list of commands you want, then run it again with the output of sed piped into sh. Here's an example with find, but it works fine with ls, too: http://github.com/DonBranson/scripts/blob/f09d24629ab6eb3ce509d4d3078818430306b063/jarfinder.sh |
||
|
|
|
else, it's the find solution by sybreon, and as suggested NOT the green mv ls solution. |
||
|
|
|
|
You surround the ls with back quotes and put it after the mv, so like this...
But keep in mind that if any of your file names have spaces in them it won't work very well. Also it would be simpler to just do something like this: |
|||
|
|
