MOTOSHARE ๐Ÿš—๐Ÿ๏ธ
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
๐Ÿš€ Everyone wins.

Start Your Journey with Motoshare

DOS Command to display time without prompting for New time

scmuser created the topic: DOS Command to display time without prompting for New time I think most of us know the DOS command โ€œtime/Tโ€ which displays current system time without prompting for new time. But If one needs more granular output, say in HH:MM:SS format, here is a way out, use โ€œecho %TIME%โ€ which expands … Read more

Get the application exit code from a Windows command line?

rajeshkumar created the topic: get the application exit code from a Windows command line? Two ways… (1) The results are stored in a pseudo environment variable named errorlevel so… echo Exit Code is %errorlevel% (2) and a special syntax of the if command: if errorlevel see if /? for details. For Example @echo off my_nify_exe.exe … Read more

Find command return type

scmuser created the topic: Find command return type I am looking for following answer if anybody can help me out… How to Return a message when a file is not found using find command? OR Find command return type OR when the file is not found i want it to return some value OR tpatil … Read more

Expect command in unix /linux?

scmuser created the topic: expect command in unix /linux? Hello, I am doing a project which asks me to enter password 4 times in a row. I need to enter the same password 4 times. My target is to enter password once and apply it 4 times. My friend told me to use “expect” command. … Read more