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: How Can I Run a Command Like...
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:
How can I run a command like pwd by using at?
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