Skip to content

Instantly share code, notes, and snippets.

@kou029w
kou029w / delself.php
Created August 23, 2017 05:35
自身を削除するphp
<?php unlink(__FILE__);
use File::Remove qw(rm);
rm __FILE__;
@kou029w
kou029w / delself.sh
Last active October 5, 2017 11:35
自身を削除するスクリプト
rm -f -- "$0"
File.delete __FILE__
import os
os.remove(__file__)
package main
import "os"
func main(){
os.Remove(os.Args[0])
}