Original
The longest one-syllable word in the English language is "screeched."
해석
영어에서 가장 긴 한 음절 단어는 "screeched"입니다.
단어
- screeched: 비명을 지르다 (동사)
The longest one-syllable word in the English language is "screeched."
영어에서 가장 긴 한 음절 단어는 "screeched"입니다.
- screeched: 비명을 지르다 (동사)
ubuntu 20.04를 사용하면서 처음 겪는 현상이 있었다.
마우스가 커서를 움직이는 것은 가능하나 (좌/우)클릭만 안되는 것이었다.
이문제를 해결하기 위해 구글링을 해보다가 다음과 같은 명령어를 통해 해결할 수 있었다.
sudo udevadm trigger
[GO] hash/maphash: malformed module path "hash/maphash": missing dot in first… (0) | 2022.08.11 |
---|---|
[docker] E: Package 'locales' has no installation candidate (0) | 2022.08.08 |
Reindeer like to eat bananas.
순록은 바나나를 먹는다.
- Reindeer: 순록 (명사)
- like: 좋아하다 (동사)
- to eat: 먹다 (동사)
- bananas: 바나나 (명사)
간단한 파일 탐색을 위한 스크립트를 작성해보았다.
막강한 명령어인 find를 기반으로 동작하고 몇가지 옵션을 간편하게 적용할 수 있도록 해둔 것으로 이해하면 좋을 것 같다.
사용은 아래와 같다. (script의 이름은 대충 finder라고 지어뒀으니 마음에 드는 이름으로 바꿔서 쓰시길)
./finder.sh 경로이름 -i include -i want -e exclude -e trash -f json -h -o result.txt
여러가지 옵션을 지원하는데 간단하게 설명해보자면
#!/bin/bash
usage() {
echo "Usage: $0 path [-i include]... [-e exclude]... [-o output] [-h] [-f format]"
echo "Options:"
echo " path The directory path to search in."
echo " -i Include keyword in path (can be used multiple times)"
echo " -e Exclude keyword from path (can be used multiple times)"
echo " -o Output file path"
echo " -h Search hidden files"
echo " -f Output format: json or plain (default: plain)"
exit 1
}
declare -a includes
declare -a excludes
output=""
hidden="false"
format="plain"
# Capture the search path first
path="$1"
shift
# If no path or it starts with '-', show usage
if [ -z "$path" ] || [[ "$path" == -* ]]; then
usage
fi
while getopts "i:e:o:hf:" opt; do
case $opt in
i) includes+=("$OPTARG") ;;
e) excludes+=("$OPTARG") ;;
o) output="$OPTARG" ;;
h) hidden="true" ;;
f) format="$OPTARG" ;;
\?) usage ;;
esac
done
# Start constructing the find command
cmd="find '$path'"
# Handle hidden files
if [ "$hidden" != "true" ]; then
cmd="$cmd ! -path '*/.*'"
fi
# Handle include keywords
if [ "${#includes[@]}" -gt 0 ]; then
for keyword in "${includes[@]}"; do
cmd="$cmd -path '*$keyword*'"
done
fi
# Handle exclude keywords
for keyword in "${excludes[@]}"; do
cmd="$cmd ! -path '*$keyword*'"
done
# Add the print command
cmd="$cmd -print"
# Handle format
case "$format" in
json)
cmd="$cmd | sed 's/^/\"/' | sed 's/$/\",/' | (echo '['; cat; echo ']')"
;;
plain)
;; # Nothing to do here, as the default is to just print
*)
;; # Default case: just print
esac
# Handle output
if [ -n "$output" ]; then
cmd="$cmd > '$output'"
fi
eval "$cmd"
[bash] 파일 크기 순으로 검색 (0) | 2023.12.12 |
---|---|
[bash] 명령어 반복 (0) | 2023.09.19 |
[bash] bash를 이용한 json 파일 파싱 (0) | 2022.08.11 |
[bash] 특정 길이의 무작위 문자열 획득 (0) | 2022.08.11 |
[bash] 프로세스 존재 여부 확인 (0) | 2022.08.11 |
In the last 3,500 years, there have been approximately 230 years of peace throughout the civilized world.
지난 3,500년 동안 문명 세계 전체에서 약 230년 동안 평화가 있었습니다.
- last: 지난, 최근의 (형용사)
- approximately: 약 (부사)
- peace: 평화 (명사)
- throughout: ~동안에, ~전체에 걸쳐 (전치사)
- civilized: 문명적인, 교양 있는 (형용사)
- world: 세계 (명사)
A shark is the only fish that can blink with both eyes.
상어는 유일하게 양쪽 눈으로 윙크를 할 수 있는 유일한 물고기입니다.
- shark: 상어 (명사)
- fish: 물고기 (명사)
- blink: 윙크하다 (동사)
- both: 양쪽 (형용사)
- eyes: 눈 (명사)
Babies are born without kneecaps. They don't appear until the child reaches 2-6 years of age.
아기들은 무릎 슬개골 없이 태어나요. 그들은 2-6세가 되기 전까지 나타나지 않아요.
- Babies : 아기들 (명사)
- born : 태어나다 (동사)
- without : 없이 (전치사)
- kneecaps : 슬개골 (명사)
- They : 그들 (대명사)
- don't : ~하지 않아요 (~하지 않는다) (축약된 동사)
- appear : 나타나다 (동사)
- until : ~까지 (접속사)
- child : 아이 (명사)
- reaches : 도달하다 (동사)
- 2-6 years of age : 2-6세 (구체적인 표현)
Kelsey Grammar sings and plays the piano for the theme song of Fraiser.
켈시 그래머가 프레이저의 주제곡을 부르고 피아노를 연주합니다.
- Kelsey : 켈시 (명사)
- Grammar : 문법 (명사)
- sings : 노래하다 (동사)
- plays : 연주하다 (동사)
- piano : 피아노 (명사)
- theme song : 주제곡 (명사)
- Fraiser : 프레이저 (명사)
The letters KGB stand for Komitet Gosudarstvennoy Bezopasnosti.
KGB라는 글자는 "코미테트 고수다르스텐노이 베조파스노스티"를 뜻합니다.
- KGB : Komitet Gosudarstvennoy Bezopasnosti (러시아어로 "국가 안전위원회"를 뜻함)
You can be fined up to $1,000 for whistling on Sunday in Salt Lake City, Utah.
솔트레이크시티의 유타주에서 일요일에 휘파람을 불면 최대 $1,000의 벌금을 받을 수 있습니다.
- fined: 벌금을 내다 (동사)
- whistling: 휘파람을 불다 (동사)
- Sunday: 일요일 (명사)
- Salt Lake City: 솔트레이크시티 (명사)
- Utah: 유타주 (명사)