[Linux][Ubuntu][Shellscript] Shell 에서 명령어 실행 시간 확인 하기
우분투 shell 에서 빌드 시간 확인이 필요한 상황이 생겨서 업어왔습니다.열심히 설치된 우분투 18.04 에서 확인하다가 원본 링크를 .. 찾는 대로 추가 예정.. 찾았네요 ^^;;## 띄어쓰기, ` 추가 주의 :: 키보드 왼쪽 숫자키 옆의 문자임## https://inforgather.tistory.com/237#!/bin/bashstart_time=`date +%s`start_time_string=`date`#### RUN Commandls -alh###end_time=`date +%s`end_time_string=`date`elapsed_time=`echo "$end_time - $start_time" | bc`htime=`echo "$elapsed_time/3600" | bc`mtime=`ec..