Zip/Tar file compressed to larger size? [duplicate]What does size of a directory mean in output of 'ls -l' command?Is there a command to list the compressed file sizes for files within a .zip file?Mount compressed tar file and update itWhy can't tar extract .zip files?Unpack file compressed in .txz and .tar with one commandBash script to get the result from rsync transfer and zip it as a directory in the original directorywhy would you tar a zip fileAdding compression to .tar file?rsync-like updating of archive fileExtracting specific file(s) from tar compressed directory?zip command show warnings “name not matched” about symlinks, outside of my working directory, pointing to non-existing target

Ideas for colorfully and clearly highlighting graph edges according to weights

How to create a consistant feel for character names in a fantasy setting?

Patience, young "Padovan"

Finding files for which a command fails

Why does this relative pronoun not take the case of the noun it is referring to?

Does a dangling wire really electrocute me if I'm standing in water?

Why do we use polarized capacitors?

What is the command to reset a PC without deleting any files

What is the offset in a seaplane's hull?

Domain expired, GoDaddy holds it and is asking more money

Latin words with no plurals in English

How many letters suffice to construct words with no repetition?

Is there a way to make member function NOT callable from constructor?

What do you call something that goes against the spirit of the law, but is legal when interpreting the law to the letter?

Does the average primeness of natural numbers tend to zero?

Is repealing the EU Withdrawal Act a precondition of revoking Article 50?

Can a planet have a different gravitational pull depending on its location in orbit around its sun?

Is it legal to have the "// (c) 2019 John Smith" header in all files when there are hundreds of contributors?

Shall I use personal or official e-mail account when registering to external websites for work purpose?

Can I legally use front facing blue light in the UK?

Mapping arrows in commutative diagrams

Lied on resume at previous job

Copycat chess is back

Why did the Germans forbid the possession of pet pigeons in Rostov-on-Don in 1941?



Zip/Tar file compressed to larger size? [duplicate]


What does size of a directory mean in output of 'ls -l' command?Is there a command to list the compressed file sizes for files within a .zip file?Mount compressed tar file and update itWhy can't tar extract .zip files?Unpack file compressed in .txz and .tar with one commandBash script to get the result from rsync transfer and zip it as a directory in the original directorywhy would you tar a zip fileAdding compression to .tar file?rsync-like updating of archive fileExtracting specific file(s) from tar compressed directory?zip command show warnings “name not matched” about symlinks, outside of my working directory, pointing to non-existing target






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








4
















This question already has an answer here:



  • What does size of a directory mean in output of 'ls -l' command?

    4 answers



I have 4 files that I want to include them in a .zip file.



drwxr-xr-x 7 skemelio themelis 4,0K Οκτ 18 00:21 CSharp
drwxr-xr-x 11 skemelio themelis 4,0K Οκτ 18 00:17 gnome-games
drwxr-xr-x 8 skemelio themelis 4,0K Οκτ 18 00:17 gnome-music
drwxr-xr-x 4 skemelio themelis 4,0K Οκτ 18 00:18 Test


As you can see in total their size is 16K.



After



I am creating the zip using the command bellow:



zip -r myfiles.zip *


The file was created successfully but now its size is 20M, as you can see bellow!



drwxr-xr-x 7 skemelio themelis 4,0K Οκτ 18 00:21 CSharp
drwxr-xr-x 11 skemelio themelis 4,0K Οκτ 18 00:17 gnome-games
drwxr-xr-x 8 skemelio themelis 4,0K Οκτ 18 00:17 gnome-music
-rw-rw-r-- 1 skemelio themelis 20M Απρ 4 02:00 myfiles.zip
drwxr-xr-x 4 skemelio themelis 4,0K Οκτ 18 00:18 Test


What I've done wrong?



ps: Same thing (same size) happened when I try to create a .tar using tar cvf myfiles.tar *.










share|improve this question









New contributor




Themelis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











marked as duplicate by Fabby, muru, Prvt_Yadv, Toby Speight, Mr Shunz Apr 4 at 10:40


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.













  • 1





    A individual directory always shows the 4k size when viewed with ls - what you want to use to check before is du - ie, du -sh *

    – ivanivan
    Apr 3 at 23:08






  • 1





    Ok I had no idea why this happens but you are right. Why don't you make it an answer?

    – Themelis
    Apr 3 at 23:10






  • 1





    FYI, 4K * 4 = 16K, not 32K. Also, in this case this is due to a misunderstanding of the size that ls reports for directories (that each directory was the exactly the same size should have been a hint that maybe ls isn't reporting what you think), but in general you should not necessarily be surprised if compression sometimes produces a larger file. Compression can't compress everything; otherwise you could repeatedly run zip on a .zip file to get increasingly smaller files.

    – jamesdlin
    Apr 4 at 4:35






  • 1





    "I have 4 files..." - No, you don't. You have 4 directories which makes all the difference here.

    – mastov
    Apr 4 at 8:30






  • 1





    @Themelis I stand corrected. They are "files", they are just not "regular files", which is important here.

    – mastov
    Apr 4 at 11:01

















4
















This question already has an answer here:



  • What does size of a directory mean in output of 'ls -l' command?

    4 answers



I have 4 files that I want to include them in a .zip file.



drwxr-xr-x 7 skemelio themelis 4,0K Οκτ 18 00:21 CSharp
drwxr-xr-x 11 skemelio themelis 4,0K Οκτ 18 00:17 gnome-games
drwxr-xr-x 8 skemelio themelis 4,0K Οκτ 18 00:17 gnome-music
drwxr-xr-x 4 skemelio themelis 4,0K Οκτ 18 00:18 Test


As you can see in total their size is 16K.



After



I am creating the zip using the command bellow:



zip -r myfiles.zip *


The file was created successfully but now its size is 20M, as you can see bellow!



drwxr-xr-x 7 skemelio themelis 4,0K Οκτ 18 00:21 CSharp
drwxr-xr-x 11 skemelio themelis 4,0K Οκτ 18 00:17 gnome-games
drwxr-xr-x 8 skemelio themelis 4,0K Οκτ 18 00:17 gnome-music
-rw-rw-r-- 1 skemelio themelis 20M Απρ 4 02:00 myfiles.zip
drwxr-xr-x 4 skemelio themelis 4,0K Οκτ 18 00:18 Test


What I've done wrong?



ps: Same thing (same size) happened when I try to create a .tar using tar cvf myfiles.tar *.










share|improve this question









New contributor




Themelis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











marked as duplicate by Fabby, muru, Prvt_Yadv, Toby Speight, Mr Shunz Apr 4 at 10:40


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.













  • 1





    A individual directory always shows the 4k size when viewed with ls - what you want to use to check before is du - ie, du -sh *

    – ivanivan
    Apr 3 at 23:08






  • 1





    Ok I had no idea why this happens but you are right. Why don't you make it an answer?

    – Themelis
    Apr 3 at 23:10






  • 1





    FYI, 4K * 4 = 16K, not 32K. Also, in this case this is due to a misunderstanding of the size that ls reports for directories (that each directory was the exactly the same size should have been a hint that maybe ls isn't reporting what you think), but in general you should not necessarily be surprised if compression sometimes produces a larger file. Compression can't compress everything; otherwise you could repeatedly run zip on a .zip file to get increasingly smaller files.

    – jamesdlin
    Apr 4 at 4:35






  • 1





    "I have 4 files..." - No, you don't. You have 4 directories which makes all the difference here.

    – mastov
    Apr 4 at 8:30






  • 1





    @Themelis I stand corrected. They are "files", they are just not "regular files", which is important here.

    – mastov
    Apr 4 at 11:01













4












4








4









This question already has an answer here:



  • What does size of a directory mean in output of 'ls -l' command?

    4 answers



I have 4 files that I want to include them in a .zip file.



drwxr-xr-x 7 skemelio themelis 4,0K Οκτ 18 00:21 CSharp
drwxr-xr-x 11 skemelio themelis 4,0K Οκτ 18 00:17 gnome-games
drwxr-xr-x 8 skemelio themelis 4,0K Οκτ 18 00:17 gnome-music
drwxr-xr-x 4 skemelio themelis 4,0K Οκτ 18 00:18 Test


As you can see in total their size is 16K.



After



I am creating the zip using the command bellow:



zip -r myfiles.zip *


The file was created successfully but now its size is 20M, as you can see bellow!



drwxr-xr-x 7 skemelio themelis 4,0K Οκτ 18 00:21 CSharp
drwxr-xr-x 11 skemelio themelis 4,0K Οκτ 18 00:17 gnome-games
drwxr-xr-x 8 skemelio themelis 4,0K Οκτ 18 00:17 gnome-music
-rw-rw-r-- 1 skemelio themelis 20M Απρ 4 02:00 myfiles.zip
drwxr-xr-x 4 skemelio themelis 4,0K Οκτ 18 00:18 Test


What I've done wrong?



ps: Same thing (same size) happened when I try to create a .tar using tar cvf myfiles.tar *.










share|improve this question









New contributor




Themelis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.













This question already has an answer here:



  • What does size of a directory mean in output of 'ls -l' command?

    4 answers



I have 4 files that I want to include them in a .zip file.



drwxr-xr-x 7 skemelio themelis 4,0K Οκτ 18 00:21 CSharp
drwxr-xr-x 11 skemelio themelis 4,0K Οκτ 18 00:17 gnome-games
drwxr-xr-x 8 skemelio themelis 4,0K Οκτ 18 00:17 gnome-music
drwxr-xr-x 4 skemelio themelis 4,0K Οκτ 18 00:18 Test


As you can see in total their size is 16K.



After



I am creating the zip using the command bellow:



zip -r myfiles.zip *


The file was created successfully but now its size is 20M, as you can see bellow!



drwxr-xr-x 7 skemelio themelis 4,0K Οκτ 18 00:21 CSharp
drwxr-xr-x 11 skemelio themelis 4,0K Οκτ 18 00:17 gnome-games
drwxr-xr-x 8 skemelio themelis 4,0K Οκτ 18 00:17 gnome-music
-rw-rw-r-- 1 skemelio themelis 20M Απρ 4 02:00 myfiles.zip
drwxr-xr-x 4 skemelio themelis 4,0K Οκτ 18 00:18 Test


What I've done wrong?



ps: Same thing (same size) happened when I try to create a .tar using tar cvf myfiles.tar *.





This question already has an answer here:



  • What does size of a directory mean in output of 'ls -l' command?

    4 answers







tar zip compression






share|improve this question









New contributor




Themelis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Themelis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited Apr 4 at 7:45









Stanowczo

1033




1033






New contributor




Themelis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked Apr 3 at 23:04









ThemelisThemelis

1314




1314




New contributor




Themelis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Themelis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Themelis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




marked as duplicate by Fabby, muru, Prvt_Yadv, Toby Speight, Mr Shunz Apr 4 at 10:40


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.









marked as duplicate by Fabby, muru, Prvt_Yadv, Toby Speight, Mr Shunz Apr 4 at 10:40


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.









  • 1





    A individual directory always shows the 4k size when viewed with ls - what you want to use to check before is du - ie, du -sh *

    – ivanivan
    Apr 3 at 23:08






  • 1





    Ok I had no idea why this happens but you are right. Why don't you make it an answer?

    – Themelis
    Apr 3 at 23:10






  • 1





    FYI, 4K * 4 = 16K, not 32K. Also, in this case this is due to a misunderstanding of the size that ls reports for directories (that each directory was the exactly the same size should have been a hint that maybe ls isn't reporting what you think), but in general you should not necessarily be surprised if compression sometimes produces a larger file. Compression can't compress everything; otherwise you could repeatedly run zip on a .zip file to get increasingly smaller files.

    – jamesdlin
    Apr 4 at 4:35






  • 1





    "I have 4 files..." - No, you don't. You have 4 directories which makes all the difference here.

    – mastov
    Apr 4 at 8:30






  • 1





    @Themelis I stand corrected. They are "files", they are just not "regular files", which is important here.

    – mastov
    Apr 4 at 11:01












  • 1





    A individual directory always shows the 4k size when viewed with ls - what you want to use to check before is du - ie, du -sh *

    – ivanivan
    Apr 3 at 23:08






  • 1





    Ok I had no idea why this happens but you are right. Why don't you make it an answer?

    – Themelis
    Apr 3 at 23:10






  • 1





    FYI, 4K * 4 = 16K, not 32K. Also, in this case this is due to a misunderstanding of the size that ls reports for directories (that each directory was the exactly the same size should have been a hint that maybe ls isn't reporting what you think), but in general you should not necessarily be surprised if compression sometimes produces a larger file. Compression can't compress everything; otherwise you could repeatedly run zip on a .zip file to get increasingly smaller files.

    – jamesdlin
    Apr 4 at 4:35






  • 1





    "I have 4 files..." - No, you don't. You have 4 directories which makes all the difference here.

    – mastov
    Apr 4 at 8:30






  • 1





    @Themelis I stand corrected. They are "files", they are just not "regular files", which is important here.

    – mastov
    Apr 4 at 11:01







1




1





A individual directory always shows the 4k size when viewed with ls - what you want to use to check before is du - ie, du -sh *

– ivanivan
Apr 3 at 23:08





A individual directory always shows the 4k size when viewed with ls - what you want to use to check before is du - ie, du -sh *

– ivanivan
Apr 3 at 23:08




1




1





Ok I had no idea why this happens but you are right. Why don't you make it an answer?

– Themelis
Apr 3 at 23:10





Ok I had no idea why this happens but you are right. Why don't you make it an answer?

– Themelis
Apr 3 at 23:10




1




1





FYI, 4K * 4 = 16K, not 32K. Also, in this case this is due to a misunderstanding of the size that ls reports for directories (that each directory was the exactly the same size should have been a hint that maybe ls isn't reporting what you think), but in general you should not necessarily be surprised if compression sometimes produces a larger file. Compression can't compress everything; otherwise you could repeatedly run zip on a .zip file to get increasingly smaller files.

– jamesdlin
Apr 4 at 4:35





FYI, 4K * 4 = 16K, not 32K. Also, in this case this is due to a misunderstanding of the size that ls reports for directories (that each directory was the exactly the same size should have been a hint that maybe ls isn't reporting what you think), but in general you should not necessarily be surprised if compression sometimes produces a larger file. Compression can't compress everything; otherwise you could repeatedly run zip on a .zip file to get increasingly smaller files.

– jamesdlin
Apr 4 at 4:35




1




1





"I have 4 files..." - No, you don't. You have 4 directories which makes all the difference here.

– mastov
Apr 4 at 8:30





"I have 4 files..." - No, you don't. You have 4 directories which makes all the difference here.

– mastov
Apr 4 at 8:30




1




1





@Themelis I stand corrected. They are "files", they are just not "regular files", which is important here.

– mastov
Apr 4 at 11:01





@Themelis I stand corrected. They are "files", they are just not "regular files", which is important here.

– mastov
Apr 4 at 11:01










1 Answer
1






active

oldest

votes


















7














An individual directory always shows its own size when viewed with ls - no matter the size of its contents. What you really want to use to check before is du - ie, du -sh *.



A good explanation of what the size of a directory means is on this Q&A - What does size of a directory mean in output of 'ls -l' command?






share|improve this answer




















  • 6





    The size show by ls for a directory is not false, it is the size of the directory. However the size of a directory is related to the number of entries in it (possibly the largest number it every had), not the size of those entries.

    – icarus
    Apr 4 at 3:58











  • So any directory takes 4K of disk space? It feels a lot!

    – Themelis
    Apr 4 at 8:49






  • 1





    @Themelis - or more. It is meta-data about the directory and contents, so if your directory has lots of files or subdirectories, etc it will get larger. Key is to remember the size shown for the directory is about the meta data, not the sum of the sizes of the contents of the directory.

    – ivanivan
    Apr 4 at 13:35

















1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









7














An individual directory always shows its own size when viewed with ls - no matter the size of its contents. What you really want to use to check before is du - ie, du -sh *.



A good explanation of what the size of a directory means is on this Q&A - What does size of a directory mean in output of 'ls -l' command?






share|improve this answer




















  • 6





    The size show by ls for a directory is not false, it is the size of the directory. However the size of a directory is related to the number of entries in it (possibly the largest number it every had), not the size of those entries.

    – icarus
    Apr 4 at 3:58











  • So any directory takes 4K of disk space? It feels a lot!

    – Themelis
    Apr 4 at 8:49






  • 1





    @Themelis - or more. It is meta-data about the directory and contents, so if your directory has lots of files or subdirectories, etc it will get larger. Key is to remember the size shown for the directory is about the meta data, not the sum of the sizes of the contents of the directory.

    – ivanivan
    Apr 4 at 13:35















7














An individual directory always shows its own size when viewed with ls - no matter the size of its contents. What you really want to use to check before is du - ie, du -sh *.



A good explanation of what the size of a directory means is on this Q&A - What does size of a directory mean in output of 'ls -l' command?






share|improve this answer




















  • 6





    The size show by ls for a directory is not false, it is the size of the directory. However the size of a directory is related to the number of entries in it (possibly the largest number it every had), not the size of those entries.

    – icarus
    Apr 4 at 3:58











  • So any directory takes 4K of disk space? It feels a lot!

    – Themelis
    Apr 4 at 8:49






  • 1





    @Themelis - or more. It is meta-data about the directory and contents, so if your directory has lots of files or subdirectories, etc it will get larger. Key is to remember the size shown for the directory is about the meta data, not the sum of the sizes of the contents of the directory.

    – ivanivan
    Apr 4 at 13:35













7












7








7







An individual directory always shows its own size when viewed with ls - no matter the size of its contents. What you really want to use to check before is du - ie, du -sh *.



A good explanation of what the size of a directory means is on this Q&A - What does size of a directory mean in output of 'ls -l' command?






share|improve this answer















An individual directory always shows its own size when viewed with ls - no matter the size of its contents. What you really want to use to check before is du - ie, du -sh *.



A good explanation of what the size of a directory means is on this Q&A - What does size of a directory mean in output of 'ls -l' command?







share|improve this answer














share|improve this answer



share|improve this answer








edited Apr 4 at 9:57









Themelis

1314




1314










answered Apr 3 at 23:56









ivanivanivanivan

3,7871414




3,7871414







  • 6





    The size show by ls for a directory is not false, it is the size of the directory. However the size of a directory is related to the number of entries in it (possibly the largest number it every had), not the size of those entries.

    – icarus
    Apr 4 at 3:58











  • So any directory takes 4K of disk space? It feels a lot!

    – Themelis
    Apr 4 at 8:49






  • 1





    @Themelis - or more. It is meta-data about the directory and contents, so if your directory has lots of files or subdirectories, etc it will get larger. Key is to remember the size shown for the directory is about the meta data, not the sum of the sizes of the contents of the directory.

    – ivanivan
    Apr 4 at 13:35












  • 6





    The size show by ls for a directory is not false, it is the size of the directory. However the size of a directory is related to the number of entries in it (possibly the largest number it every had), not the size of those entries.

    – icarus
    Apr 4 at 3:58











  • So any directory takes 4K of disk space? It feels a lot!

    – Themelis
    Apr 4 at 8:49






  • 1





    @Themelis - or more. It is meta-data about the directory and contents, so if your directory has lots of files or subdirectories, etc it will get larger. Key is to remember the size shown for the directory is about the meta data, not the sum of the sizes of the contents of the directory.

    – ivanivan
    Apr 4 at 13:35







6




6





The size show by ls for a directory is not false, it is the size of the directory. However the size of a directory is related to the number of entries in it (possibly the largest number it every had), not the size of those entries.

– icarus
Apr 4 at 3:58





The size show by ls for a directory is not false, it is the size of the directory. However the size of a directory is related to the number of entries in it (possibly the largest number it every had), not the size of those entries.

– icarus
Apr 4 at 3:58













So any directory takes 4K of disk space? It feels a lot!

– Themelis
Apr 4 at 8:49





So any directory takes 4K of disk space? It feels a lot!

– Themelis
Apr 4 at 8:49




1




1





@Themelis - or more. It is meta-data about the directory and contents, so if your directory has lots of files or subdirectories, etc it will get larger. Key is to remember the size shown for the directory is about the meta data, not the sum of the sizes of the contents of the directory.

– ivanivan
Apr 4 at 13:35





@Themelis - or more. It is meta-data about the directory and contents, so if your directory has lots of files or subdirectories, etc it will get larger. Key is to remember the size shown for the directory is about the meta data, not the sum of the sizes of the contents of the directory.

– ivanivan
Apr 4 at 13:35



Popular posts from this blog

រឿង រ៉ូមេអូ និង ហ្ស៊ុយលីយេ សង្ខេបរឿង តួអង្គ បញ្ជីណែនាំ

Crop image to path created in TikZ? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Crop an inserted image?TikZ pictures does not appear in posterImage behind and beyond crop marks?Tikz picture as large as possible on A4 PageTransparency vs image compression dilemmaHow to crop background from image automatically?Image does not cropTikzexternal capturing crop marks when externalizing pgfplots?How to include image path that contains a dollar signCrop image with left size given

Romeo and Juliet ContentsCharactersSynopsisSourcesDate and textThemes and motifsCriticism and interpretationLegacyScene by sceneSee alsoNotes and referencesSourcesExternal linksNavigation menu"Consumer Price Index (estimate) 1800–"10.2307/28710160037-3222287101610.1093/res/II.5.31910.2307/45967845967810.2307/2869925286992510.1525/jams.1982.35.3.03a00050"Dada Masilo: South African dancer who breaks the rules"10.1093/res/os-XV.57.1610.2307/28680942868094"Sweet Sorrow: Mann-Korman's Romeo and Juliet Closes Sept. 5 at MN's Ordway"the original10.2307/45957745957710.1017/CCOL0521570476.009"Ram Leela box office collections hit massive Rs 100 crore, pulverises prediction"Archived"Broadway Revival of Romeo and Juliet, Starring Orlando Bloom and Condola Rashad, Will Close Dec. 8"Archived10.1075/jhp.7.1.04hon"Wherefore art thou, Romeo? To make us laugh at Navy Pier"the original10.1093/gmo/9781561592630.article.O006772"Ram-leela Review Roundup: Critics Hail Film as Best Adaptation of Romeo and Juliet"Archived10.2307/31946310047-77293194631"Romeo and Juliet get Twitter treatment""Juliet's Nurse by Lois Leveen""Romeo and Juliet: Orlando Bloom's Broadway Debut Released in Theaters for Valentine's Day"Archived"Romeo and Juliet Has No Balcony"10.1093/gmo/9781561592630.article.O00778110.2307/2867423286742310.1076/enst.82.2.115.959510.1080/00138380601042675"A plague o' both your houses: error in GCSE exam paper forces apology""Juliet of the Five O'Clock Shadow, and Other Wonders"10.2307/33912430027-4321339124310.2307/28487440038-7134284874410.2307/29123140149-661129123144728341M"Weekender Guide: Shakespeare on The Drive""balcony"UK public library membership"romeo"UK public library membership10.1017/CCOL9780521844291"Post-Zionist Critique on Israel and the Palestinians Part III: Popular Culture"10.2307/25379071533-86140377-919X2537907"Capulets and Montagues: UK exam board admit mixing names up in Romeo and Juliet paper"Istoria Novellamente Ritrovata di Due Nobili Amanti2027/mdp.390150822329610820-750X"GCSE exam error: Board accidentally rewrites Shakespeare"10.2307/29176390149-66112917639"Exam board apologises after error in English GCSE paper which confused characters in Shakespeare's Romeo and Juliet""From Mariotto and Ganozza to Romeo and Guilietta: Metamorphoses of a Renaissance Tale"10.2307/37323537323510.2307/2867455286745510.2307/28678912867891"10 Questions for Taylor Swift"10.2307/28680922868092"Haymarket Theatre""The Zeffirelli Way: Revealing Talk by Florentine Director""Michael Smuin: 1938-2007 / Prolific dance director had showy career"The Life and Art of Edwin BoothRomeo and JulietRomeo and JulietRomeo and JulietRomeo and JulietEasy Read Romeo and JulietRomeo and Julieteeecb12003684p(data)4099369-3n8211610759dbe00d-a9e2-41a3-b2c1-977dd692899302814385X313670221313670221