Running pwd command by using at - at doesn't do anything

I'm trying to learn how to use the at command and to do that I tried to run the pwd command, but it seems that nothing happens:

enter image description here

How can I run a command like pwd by using at?

6

1 Answer

Output is not made in your current terminal window. You need to send it somewhere. For example to a log file, via Email, ...

pwd >> pwd.log

Then you can check the output:

cat pwd.log
#or
tail -f pwd.log
1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like