XAR (Executable Archive)
From Just Solve the File Format Problem
(Difference between revisions)
(Created page with "{{FormatInfo |formattype=electronic |subcat=Archiving |extensions={{ext|xar}} |released=2018 }} '''XAR''' (eXecutable ARchive), or '''XARs''', is a self-contained executable/a...") |
m |
||
(One intermediate revision by one user not shown) | |||
Line 7: | Line 7: | ||
'''XAR''' (eXecutable ARchive), or '''XARs''', is a self-contained executable/archive file format developed by [[Facebook]]. | '''XAR''' (eXecutable ARchive), or '''XARs''', is a self-contained executable/archive file format developed by [[Facebook]]. | ||
− | A XAR file can contain a program (e.g. a [[Python]] script), along with that program's dependencies, and any other required data. When executed, it mounts a [[ | + | A XAR file can contain a program (e.g. a [[Python]] script), along with that program's dependencies, and any other required data. When executed, it mounts a [[Squashfs]] filesystem. |
== Identification == | == Identification == | ||
Line 14: | Line 14: | ||
== Links == | == Links == | ||
* https://github.com/facebookincubator/xar/ | * https://github.com/facebookincubator/xar/ | ||
+ | |||
+ | [[Category:Facebook]] |
Latest revision as of 15:31, 10 February 2019
XAR (eXecutable ARchive), or XARs, is a self-contained executable/archive file format developed by Facebook.
A XAR file can contain a program (e.g. a Python script), along with that program's dependencies, and any other required data. When executed, it mounts a Squashfs filesystem.
[edit] Identification
A XAR file apparently begins with ASCII "#!/usr/bin/env xarexec_fuse
" (see shebang), or something similar.