2019-11-20 19:48:16 +00:00
|
|
|
#! /usr/bin/env python
|
|
|
|
# Copyright 2019 Google LLC.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
2019-12-17 16:32:21 +00:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2019-11-20 19:48:16 +00:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
2019-12-17 16:32:21 +00:00
|
|
|
print(all(os.path.exists(a) for a in sys.argv[1:]))
|