docs(common-aliases): fix tar.gz command in README

- Replace incorrect 'echo' command with 'tar -ztf' for listing tar.gz files
- This provides the correct command for users to list contents of gzip-compressed tar archives
This commit is contained in:
Ranjuna120 2025-09-26 23:19:49 +05:30
commit 7d76cd8e85

View file

@ -114,13 +114,13 @@ that file will be open with `acroread`.
### Listing files inside a packed file ### Listing files inside a packed file
| Alias | Command | Description | | Alias | Command | Description |
| ------ | ---------- | --------------------------------- | | ------ | ------------ | --------------------------------- |
| zip | `unzip -l` | Lists files inside a .zip file | | zip | `unzip -l` | Lists files inside a .zip file |
| rar | `unrar l` | Lists files inside a .rar file | | rar | `unrar l` | Lists files inside a .rar file |
| tar | `tar tf` | Lists files inside a .tar file | | tar | `tar tf` | Lists files inside a .tar file |
| tar.gz | `echo` | Lists files inside a .tar.gz file | | tar.gz | `tar -ztf` | Lists files inside a .tar.gz file |
| ace | `unace l` | Lists files inside a .ace file | | ace | `unace l` | Lists files inside a .ace file |
### Some other features ### Some other features