21 lines
287 B
Bash
Executable File
21 lines
287 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cat<<EOF
|
|
#!/usr/bin/python3
|
|
# -*- coding:utf-8 -*-
|
|
#=========================================
|
|
# Filename : $1
|
|
# Company : Boyachain
|
|
# Create : $(date +"%F %R")
|
|
#=========================================
|
|
|
|
|
|
|
|
def main():
|
|
return
|
|
|
|
if '__main__' == __name__:
|
|
main()
|
|
EOF
|
|
|