print("hello world45344354544")
time python3 main.py > a
time을 사용하여 해당 파이썬 스크립트의 실행시간을 측정해보려고 했다. 하지만 standard output이 아닌지, 파일로 저장되지 않았다. -> stderr로 들어간다. 찾아본 결과 아래와 같이 변경하면 파일로 저장된다.
{ time python3 main.py } 2> a
변경했더니 잘 저장되었다!
How to redirect the output of the time command to a file in Linux?