diff --git a/README.md b/README.md new file mode 100644 index 0000000..589eedb --- /dev/null +++ b/README.md @@ -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)* + diff --git a/dist-archive/0.tar b/dist-archive/0.tar new file mode 100644 index 0000000..571fa03 Binary files /dev/null and b/dist-archive/0.tar differ diff --git a/dist-archive/0.vbs b/dist-archive/0.vbs new file mode 100644 index 0000000..1eca2f0 --- /dev/null +++ b/dist-archive/0.vbs @@ -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" \ No newline at end of file diff --git a/dist-archive/0.vbs.zip b/dist-archive/0.vbs.zip new file mode 100644 index 0000000..fe5d8c8 Binary files /dev/null and b/dist-archive/0.vbs.zip differ