mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-16 13:49:11 +00:00
Update cheatsheets
This commit is contained in:
41
linux/phar
Normal file
41
linux/phar
Normal file
@@ -0,0 +1,41 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# phar
|
||||
|
||||
> Create, update or extract PHP archives (PHAR).
|
||||
> More information: <https://manned.org/phar>.
|
||||
|
||||
- Add one or more files or directories to a Phar file:
|
||||
|
||||
`phar add -f {{path/to/phar_file}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}`
|
||||
|
||||
- Display the contents of a Phar file:
|
||||
|
||||
`phar list -f {{path/to/phar_file}}`
|
||||
|
||||
- Delete the specified file or directory from a Phar file:
|
||||
|
||||
`phar delete -f {{path/to/phar_file}} -e {{file_or_directory}}`
|
||||
|
||||
- Compress or uncompress files and directories in a Phar file:
|
||||
|
||||
`phar compress -f {{path/to/phar_file}} -c {{algorithm}}`
|
||||
|
||||
- Get information about a Phar file:
|
||||
|
||||
`phar info -f {{path/to/phar_file}}`
|
||||
|
||||
- Sign a Phar file with a specific hash algorithm:
|
||||
|
||||
`phar sign -f {{path/to/phar_file}} -h {{algorithm}}`
|
||||
|
||||
- Sign a Phar file with an OpenSSL private key:
|
||||
|
||||
`phar sign -f {{path/to/phar_file}} -h openssl -y {{path/to/private_key}}`
|
||||
|
||||
- Display help and available hashing/compression algorithms:
|
||||
|
||||
`phar help`
|
||||
Reference in New Issue
Block a user