Skip to content

Instantly share code, notes, and snippets.

View jasarsoft's full-sized avatar
🇺🇸
Learning

Edin Jašarević jasarsoft

🇺🇸
Learning
View GitHub Profile
@jasarsoft
jasarsoft / forfiles cmd
Created March 11, 2017 16:30
CMD: ForFiles - File name with file size
REM example 1
forfiles /p "C:\Windows" /s /m *.* /c "cmd /c echo @path - @fsize" > filesize.txt
@jasarsoft
jasarsoft / coculateavarage.pas
Last active October 7, 2016 20:18
The school example of calculating the average score using the Pascal
{*******************************************************************}
{ }
{ Borland Turbo Pascal 1.5 for Windows }
{ Thursday, 9. December 2010 }
{ Copyright(c) by Edin Jašarević }
{ edinjasar14@gmail.com }
{ }
{*******************************************************************}
Program CoculateAvarage (Input, OutPut);