Last active
October 20, 2017 22:57
-
-
Save Quar/b154ec56ca79489e7873667dad4f4ac1 to your computer and use it in GitHub Desktop.
common tools
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# view contents inside tar.gz | |
curl -s https://www.x.org/releases/individual/util/util-macros-1.19.1.tar.gz | tar -tf - | |
# view file inside tar.gz | |
curl -s https://www.x.org/releases/individual/util/util-macros-1.19.1.tar.gz | tar --strip-components 1 -xOf - util-macros-1.19.1/README | |
# search file using glob-pattern tcsh(1) | |
curl -s https://www.x.org/releases/individual/util/util-macros-1.19.1.tar.gz | tar --strip-components 1 -xOf - '**/README' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment