20

I would like to add the .zip extension to all files. I tried this, however it does not work:

ls | awk '{print $1 " " $1".zip"}' | xargs mv -f
Oli
  • 299,380
UAdapter
  • 17,967

5 Answers5

26
for f in * ; do 
  mv "$f" "$f.zip"
done
elmicha
  • 9,960
22
rename 's/$/\.zip/' *

Don't use xargs for that!

David Foerster
  • 36,890
  • 56
  • 97
  • 151
Adobe
  • 3,971
6

Searching - few links:

  1. Recursively add file extension to all files - Stack Overflow
  2. Add file extension to files with bash - Stack Overflow

man rename:

NAME
       rename - renames multiple files

SYNOPSIS
       rename [ -v ] [ -n ] [ -f ] perlexpr [ files ]

DESCRIPTION
       "rename" renames the filenames supplied according to the rule specified as 
       the first argument.  The perlexpr argument is a Perl expression which is 
       expected to modify the $_ string in Perl for at least some of the filenames 
       specified. If a given filename is not modified by the expression, it will not 
       be renamed.  If no filenames are given on the command line, filenames will be 
       read via standard input...

man wiki: http://en.wikipedia.org/wiki/Man_page

user26687
  • 15,174
6

A very simple way to do that is :

if you want to keep current extension:

for i in *; do mv $i ${i}.zip; done     

if you want to replace current extension:

for i in *; do mv $i ${i%.*}.zip; done
dmx
  • 2,027
0

This should do the trick:

mmv "./*" "./#1.zip"

(Although I have no idea why you would want to do this...)

xubuntix
  • 5,580