링크 ux date 전날 등 다양한 용법
현재 날짜 보이 기
DATE=`date +%Y%m%d` +번호 뒤 에는 년 월 일 로 정의 되 어 있 습 니 다.
전날
DATE 1='date-d'1 days ago'+%Y%m%d'플러스-d 인 자 는 현재 날짜 와 의 계산 시간 을 설정 할 수 있 습 니 다.마찬가지 로 전날 은'2 days ago'이 고,ago 를 제거 하면 현재 날짜 이후 며칠 입 니까?
아래 내용 은 바로 인터넷 에서 본 괜 찮 은 글 이다.http://www.labri.fr/perso/strandh/Teaching/USI/Common/Sh-utils/sh-utils_65.html
Here are a few examples. Also see the documentation for the `-d' option in the previous section.
date --date='2 days ago'
date --date='3 months 1 day'
date --date='25 Dec' +%j
date '+%B %d'
But this may not be what you want because for the first nine days of the month, the `%d' expands to a zero-padded two-digit field, for example `date -d 1may '+%B %d'' will print `May 01'. -
modifier to suppress the padding altogether.
date -d=1may '+%B %-d'
date
when setting the system clock:
date +%m%d%H%M%Y.%S
date --set='+2 minutes'
Mon, 25 Mar 1996 23:34:17 -0600
date --date='1970-01-01 00:00:01 UTC +5 hours' +%s
18001
Suppose you had not specified time zone information in the example above. Then, date would have used your computer's idea of the time zone when interpreting the string. Here's what you would get if you were in Greenwich, England:
# local time zone used
date --date='1970-01-01 00:00:01' +%s
1
date --date='2000-01-01 UTC' +%s
946684800
To convert such an unwieldy number of seconds back to a more readable form, use a command like this:
date -d '1970-01-01 946684800 sec' +"%Y-%m-%d %T %z"
2000-01-01 00:00:00 +0000
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
용감한 바로 가기 및 우분투 응용 프로그램안녕하세요 여러분, 이 기사에서는 모든 사이트에서 pwa를 생성하고 실행기 응용 프로그램으로 추가하는 방법을 설명하고 싶습니다. 일부 웹사이트는 PWA로 설치를 허용하지 않지만 유사한 애플리케이션을 원합니다. 1. ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.