blob: 615fff5711a6911302c36b19669d6fae449c6fe9 [file] [log] [blame]
# -*- coding: utf-8 -*-
# Copyright 2020 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Run xz from PATH with a thread for each core in the system."""
from __future__ import print_function
import os
def main(argv):
os.execvp('xz', ['xz', '-T0'] + argv)