Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours scrolling social media and waste money on things we forget, but won’t spend 30 minutes a day earning certifications that can change our lives.
Master in DevOps, SRE, DevSecOps & MLOps by DevOpsSchool!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

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