From 54ddab01d23ed7c0e4a43657c342342241090963 Mon Sep 17 00:00:00 2001 From: gimpei Date: Sun, 13 Aug 2017 23:16:41 +0900 Subject: add explosion --- bin/explosion | 34 ++++++++++++++++++++++++++++++++++ bin/tmp/1 | 0 bin/tmp/2 | 0 3 files changed, 34 insertions(+) create mode 100755 bin/explosion create mode 100644 bin/tmp/1 create mode 100644 bin/tmp/2 (limited to 'bin') diff --git a/bin/explosion b/bin/explosion new file mode 100755 index 0000000..8a9aff1 --- /dev/null +++ b/bin/explosion @@ -0,0 +1,34 @@ +#!/usr/bin/python3 +import os +import sys +import glob +import time +import shutil + +HOME = os.environ['HOME'] +PWD = os.environ['PWD'] +target = sys.argv[1] + +# めぐみんを出力して全部中身を消す +print( open('{HOME}/kawaii-term/asciiarts/megumin.ascii'.format(HOME=HOME)).read() ) + +print( '詠唱を開始します' ) +start = time.time() +files = glob.glob('{}/{}'.format(PWD, target)) +length = len( files ) +print( '詠唱を完了しました!{}[sec]'.format( int( time.time() - start) ) ) + +for e, name in enumerate(files): + if e%500 == 0: + print('now iter {} / {}'.format(e, length) ) + try: + os.remove( name ) + except Exception as e: + try: + shutil.rmtree( name ) + ... + except Exception as e: + print( e ) + ... +print( '爆破完了!!' ) + diff --git a/bin/tmp/1 b/bin/tmp/1 new file mode 100644 index 0000000..e69de29 diff --git a/bin/tmp/2 b/bin/tmp/2 new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3