-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path00xx_Notes.bat
31 lines (30 loc) · 1.21 KB
/
00xx_Notes.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
::-----------------------------------------------------------------------------
:: Creator / Writer , Meir.e, Note by date , xxxx_xx_xx_notes
::
::-----------------------------------------------------------------------------
@ECHO OFF & TITLE Meir-E &set BATman=%USERPROFILE%\Documents\GitHub\Functions\BATman
::---------------------------------- Main--------------------------------------
echo %0 &cd %0\..
call %BATman% :Print_MAN_Logo
:: call %BATman% :ShowMenu %0
::CALL %BATman% :MAN_ShowMenu %0
CALL :OPT1
goto :EOF
:OPT1 | 1 - 00xx_Notes.bat
dir
dir /B *.txt
::--::
call %BATman% :Print_MAN_Logo
::--::
echo Custom format=%date:~-4,4%%date:~-10,2%%date:~-7,2%
::--::
:: set "d_custom=%date:~-4,4%%date:~-10,2%%date:~-7,2%" &REM when usa of somthin format
set "d_custom=%date:~-4,4%%date:~-7,2%%date:~-10,2%" &REM when hebrew of somthin format - Oposite date
::set "d_custom=%date:~-4,4%%date:~-10,2%%date:~-7,2%" &REM when hebrew of somthin format
set "f_note=%d_custom%_Note.txt"
if not exist %f_note% ( echo %d_custom%_Notes >> "%f_note%" )
start "" "C:\Program Files\Notepad++\notepad++.exe" %f_note%
EXIT /B 0
:OPT2 | 2 - Google Docs
start "" https://docs.google.com/
EXIT /B 0