emoji clock
1.0.0
? 당신이 결코 늦지 않았는지 확인하기위한 이모티콘 시계
오래 전 사람들은 시계를 사용하여 시간을 말합니다. 이 시계에는 얼굴이 있었나요? 손으로? 그리고 사람들은 눈에 쉽게 읽을 수있었습니다. 시간은 몇 시간 이내에 중요했습니다. 이것들은 대부분 숫자로 디지털 시계로 대체되었습니다. 오늘, 우리는 이모티콘이 있습니다!
다음을 실행하여 ~/.cargo/bin
아래에 emojiclock
바이너리를 설치하십시오.
$ cargo install emoji-clock-cli
다음은 CLI의 도움말 플래그의 출력입니다. 즐기다.
$ emojiclock --help
emoji-clock 0.0.0
softprops < [email protected] >
renders time as an emoji clock
USAGE:
emojiclock [FLAGS] [time]
FLAGS:
-c, --copy Copies to clipboard (where possible)
-h, --help Prints help information
-m, --meridiem Adds an indicator for what half of the day this time falls within (ante meridiem or post meridiem)
-V, --version Prints version information
ARGS:
< time > An expression similar to expression that can be provided to GNU date -d expr -
http://man7.org/linux/man-pages/man1/date.1.html#DATE_STRING [default: now]
기본적으로 emojiclock
이모티콘 시계 옷장을 "Now"에 인쇄하지만 대략 영어 형태 (크로노-영어 상자가 지원하는)로 "지금"과 관련된 시간을 제공 할 수도 있습니다.
for hour in ` seq 1 12 ` ; do emojiclock " $hour hours " ; done
?
?
?
?
?
?
?
?
?
?
?
?
이모티콘에서 현재 시간을보고 싶지 않고 다른 곳에서 사용하기 위해 캡처하고 싶습니다. -c
(또는 --copy
) 플래그를 사용하여 출력을 클립 보드에 복사하십시오.
$ emojiclock -c
# paste it somewhere nice
때로는 AM 또는 PM에 대한 컨텍스트를 갖는 것이 유용합니다. 항상 아파트 창을 열고 직접 볼 수 있지만 편리하지 않은 경우 -m
(또는 --meridiem
) 플래그를 통과하여 해당 컨텍스트를 캡처합니다.
$ emojiclock -m
emojiclock -m
??
Doug Tangren (SoftProps) 2018