Stop Microsoft

Operating Systems => Linux and UNIX => Topic started by: Doogee on 3 January 2003, 04:18

Title: SPACE age kinda stuff here
Post by: Doogee on 3 January 2003, 04:18
Hey all.

I have a folder of files i want to upload to the net, but i cant do it because some have spaces. is there any little thing i could write to replace the  spaxes in the filename and put underscores there instead?

There are a few with no spaces. so it would need to leave them alone.


Thanks

-Dan
Title: SPACE age kinda stuff here
Post by: Stryker on 3 January 2003, 04:28
Very simple...


i'd do something like this:
tar -zcvf files.tgz my\ first\ file.bmp my\ second\ file.exe

would put 'my first file.bmp' and 'my second file.exe' into files.tgz

good luck
Title: SPACE age kinda stuff here
Post by: Doogee on 3 January 2003, 04:47
people downloading the files will be primarily winders users, they wont do the tar thing. is there a way to pkzip or something like that. Also all these files need to be seperate
Title: SPACE age kinda stuff here
Post by: flap on 3 January 2003, 04:57
this will replace spaces in all the files in the current directory with underscores. There may be a quicker way to do this; I'm never really sure when it comes to Bash scripting when you have spaces in filenames.

find -name "*\ *" | while read ITEM; do mv "$ITEM" `echo "$ITEM" | sed -e 's/\ /_/g'`; done
Title: SPACE age kinda stuff here
Post by: Doogee on 3 January 2003, 05:20
quote:
Originally posted by flap:
this will replace spaces in all the files in the current directory with underscores. There may be a quicker way to do this; I'm never really sure when it comes to Bash scripting when you have spaces in filenames.

find -name "*\ *" | while read ITEM; do mv "$ITEM" `echo "$ITEM" | sed -e 's/\ /_/g'`; done




Thanks big time, worked a charm.
Title: SPACE age kinda stuff here
Post by: beltorak0 on 3 January 2003, 07:28
actually newer versions of winzip handle tar.gz (tarballs) well enough.  if you would rather "zip" them for winderz users try the "zip" commands.  man zip.

btw, unzip can take a self-extracting ".exe" and unzip it in case you ever have need...

-t.
Title: SPACE age kinda stuff here
Post by: Doogee on 3 January 2003, 07:49
hrmm i really cant figure out how to use the zip command but i am in need of it because this host wont let me upload the files because of an "unknown extension"
Title: SPACE age kinda stuff here
Post by: preacher on 3 January 2003, 21:35
quote:
Originally posted by Got Doogee?:
people downloading the files will be primarily winders users, they wont do the tar thing. is there a way to pkzip or something like that. Also all these files need to be seperate


I know for a fact that winzip can handle tar files.
Title: SPACE age kinda stuff here
Post by: Calum on 3 January 2003, 16:34
quote:
Originally posted by Got Doogee?:
hrmm i really cant figure out how to use the zip command but i am in need of it because this host wont let me upload the files because of an "unknown extension"


here is the solution:

make tar.gz files out of them, then add ".zip" to the end of the filename so:

"doogeesasspix.tar.gz" would become "doogeesasspix.tar.gz.zip" or "doogeesasspix.zip"

note all you do here is change the filename. Then upload the stuff and your host will think they are zip files. The windows users will download them and think they are zip files and they will open them with winzip. in fact if the user has winzip installed, they will be set to open these files with that by default. The net effect for the end user is exactly the same as if you made them zip files in the first place.

Personally i would leave the .tar.gz in the filename since any non windows users will need that sort of clue to what kind of file it is once they find out it's not a 'real' zip file.
Title: SPACE age kinda stuff here
Post by: flap on 3 January 2003, 17:31
quote:
Originally posted by Calum:
note all you do here is change the filename. Then upload the stuff and your host will think they are zip files. The windows users will download them and think they are zip files and they will open them with winzip. in fact if the user has winzip installed, they will be set to open these files with that by default. The net effect for the end user is exactly the same as if you made them zip files in the first place.


I'm afraid that won't work. Although winzip can handle both filetypes it still needs to determine which one it's opening. If it's a tarball and the extension's telling it it's a zip, it will assume it's an invalid archive.
Title: SPACE age kinda stuff here
Post by: Doogee on 3 January 2003, 18:21
hrmm well its geocities, so does anyone have any ideas to trick those dumbasses?
Title: SPACE age kinda stuff here
Post by: flap on 3 January 2003, 18:46
To use the zip utility you just do
zip filename.zip filestozip
Title: SPACE age kinda stuff here
Post by: Doogee on 3 January 2003, 19:00
Telstra wont mind me hazing ROMS on there servers would they? as long as i have all the necessary disclaimers.
Title: SPACE age kinda stuff here
Post by: Calum on 4 January 2003, 04:26
they won't even notice i am sure.
quote:
Originally posted by flap:


I'm afraid that won't work. Although winzip can handle both filetypes it still needs to determine which one it's opening. If it's a tarball and the extension's telling it it's a zip, it will assume it's an invalid archive.



this works on windows 2000, i swear to you. have not tried it on other versions though.
Title: SPACE age kinda stuff here
Post by: Doogee on 4 January 2003, 21:28
haha my goodness Bigponds Web hosting thing is dismal, 10 MB space and 100megs per month of data transfer. lol no thankyou. anyone know any GOOD free hosting places? noone here has a server with a bitta space on it do they?
Title: SPACE age kinda stuff here
Post by: beltorak0 on 5 January 2003, 00:35
winzip should handle it properly for any underlying M$-OS.  Winzip will be executed because windows sees the ".zip"; winzip then will read the first few bytes of the file, which will indicate that it is a ".tar.gz" file; it will then ungzip it, discover that the gzip contains only one file, and pop up a dialog asking the user if he wants to de-tar it to a temp folder (although it says "decompress" instead of "de-tar").  That is the only indication that the windows user has that it is not a regular ".zip".  Once untarballed though, it can be "_"extracted"_" like any other ".zip".  For the most part it is transparent; but if you are posting for really clueless users, you might want to add an explanation of that extra dialog box to your site.

btw, AFAIK winzip cannot handle the more efficient bzip2 format.
Title: SPACE age kinda stuff here
Post by: flap on 9 January 2003, 02:13
I just tried that with winzip 8.1 using wine. It definitely doesn't work.
Title: SPACE age kinda stuff here
Post by: Calum on 9 January 2003, 14:28
which doesn't? bzip2 or gzip? bzip2 does not work, and i just found out that there are indeed some gzip archives that winzip can't deal with. it does deal with all the normal ones i have made on the command line though, the only ones i came up against a problem with so far were the xfce skins i made (available at www.orkney.cjb.net (http://www.orkney.cjb.net)) which are .tar.gz archives, but cannot be opened in winzip. these were made using the xfskin GUI, so not sure what weirdo options it might have passed to gzip to make it do this.

[ January 09, 2003: Message edited by: Calum ]

Title: SPACE age kinda stuff here
Post by: flap on 9 January 2003, 15:58
No, what I said originally - renaming a tarball to .zip doesn't work. Winzip just reports an invalid archive. When you rename it back to .tar.gz it works.
Title: SPACE age kinda stuff here
Post by: Calum on 9 January 2003, 16:35
Crikey! i am prepared to eat my words and my hat! i just used this small tarball (http://informatimago.free.fr/archives/develop/gnustep/Little.s.tar.gz) to test this with and bless my cotton socks if you are not entirely right and i am entirely wrong!

opens with winzip if extension is tar.gz, fails to open if extension is .zip. I am certain that i have had this work in the past though (using a different version of windows and a different version of winzip though). The solution is just going to have to becall the files *.zip and then to tell the users to download the file and then add the filename extension ".tar.gz" on the end.
Title: SPACE age kinda stuff here
Post by: Calum on 9 January 2003, 17:39
b). definitely.

don't get me wrong, i always get my work finished before i play on the internet, but when there's not a full day's work to do, why not take advantage of the broadband available at work?