blob: 615fff5711a6911302c36b19669d6fae449c6fe9 [file] [log] [blame]
Benjamin Gordon1f4537f2019-12-06 09:10:56 -07001# -*- coding: utf-8 -*-
2# Copyright 2020 The Chromium OS Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6"""Run xz from PATH with a thread for each core in the system."""
7
8from __future__ import print_function
9
10import os
11
12
13def main(argv):
14 os.execvp('xz', ['xz', '-T0'] + argv)