| bio | website | |
|---|---|---|
| location | Chard, United Kingdom | |
| age | 46 | |
| visits | member for | 10 months |
| seen | Mar 26 at 10:53 | |
| stats | profile views | 0 |
Application Support Engineer for an equities exchange Python scripter Husband Father Gamer
|
Feb 22 |
awarded | Necromancer |
|
Jul 3 |
awarded | Teacher |
|
Jul 3 |
awarded | Editor |
|
Jul 3 |
revised |
What is the proper way to manage multiple python versions? added 82 characters in body |
|
Jul 3 |
answered | What is the proper way to manage multiple python versions? |
|
Jul 3 |
comment |
Untar only a certain number of files from a large tarball You can get a list of the filenames using "tar -tf", take the first 50 using "head", then feed that list into another tar command as the list of filenames to extract. Like this: "tar -xf file.tar --no-anchored `tar -tf file.tar|head -50`" |