commit all archived files

This commit is contained in:
mappu 2017-10-04 00:00:00 +00:00
parent c46c938ded
commit 57882d8357
4 changed files with 24 additions and 0 deletions

22
README.md Normal file
View File

@ -0,0 +1,22 @@
# 0.vbs
![](https://img.shields.io/badge/written%20in-Bash%2C%20VBScript-blue)
A script that renames itself when run, as a counter
Double-click the script, and it becomes the next number. Intended to keep track of which TV episode you are up to in a folder.
Zip file version is included to avoid restricted HTTP proxies.
## Changelog
2017-10-04 tar
- Port to bash
- [⬇️ 0.tar](dist-archive/0.tar) *(10.00 KiB)*
2008-06-12 vbs
- Initial release (VBScript)
- [⬇️ 0.vbs.zip](dist-archive/0.vbs.zip) *(280B)*
- [⬇️ 0.vbs](dist-archive/0.vbs) *(174B)*

BIN
dist-archive/0.tar Normal file

Binary file not shown.

2
dist-archive/0.vbs Normal file
View File

@ -0,0 +1,2 @@
Set o=CreateObject("Scripting.FileSystemObject"):a=wscript.scriptname:b=wscript.scriptfullname
o.MoveFile b,Mid(b,1,Len(b)-Len(a))&"\"&CStr(CInt(Mid(a,1,Len(a)-4))+1)&".vbs"

BIN
dist-archive/0.vbs.zip Normal file

Binary file not shown.