You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just a developer's shorthand that covers .tar.gz or .zip for the following long form operators. I didn't think much of this command to be honest, it was after a long day of documentation that I added it.
Does it need to be replaced? I'm not confident of the unzip utility across different OS and whether that will work from a curl pipe. I would have to test.
curl -L https://github.com/sap-linuxlab/ansible.playbooks_for_sap/archive/refs/tags/1.0.0.tar.gz \
| tar --extract --ungzip --verbose
-x, --extract, --get
Extract files from an archive.
-z, --gzip, --gunzip, --ungzip
Filter the archive through [gzip](1).
-v, --verbose
Verbosely list files processed.
The section here: https://github.com/sap-linuxlab/ansible.playbooks_for_sap/blob/main/docs/GET_STARTED_WINDOWS.md#download
Has the following example:
mkdir -p run_playbooks && cd run_playbooks && curl -L https://github.com/sap-linuxlab/ansible.playbooks_for_sap/archive/refs/tags/1.0.0.zip | tar -xzv
But using 1.0.0.zip is not decompressed with tar.
Should be:
mkdir -p run_playbooks && cd run_playbooks && curl -L https://github.com/sap-linuxlab/ansible.playbooks_for_sap/archive/refs/tags/1.0.0.tar.gz | tar -xzv
Same for the MacOS section also.
The text was updated successfully, but these errors were encountered: