반응형 OS91 Autohotkey MacOS 방향키 적용 윈도우에서 맥북 방향키 형태 적용 ^Left:: Send {Home} ^Right:: Send {End} +^Left:: Send +{Home} +^Right:: Send +{End} ^Up::Send {Home}{PgUp} ^Down::Send {End}{PgDn} +^Up::Send +{Home}+{PgUp} +^Down::Send +{End}+{PgDn} !Left:: Send ^{Left} !Right:: Send ^{Right} +!Left:: Send +^{Left} +!Right:: Send +^{Right} ^Backspace::Send +{Home}{Backspace} !Backspace::Send, +^{Left}+{Delete} !Delete::Send, ^{Delete} 2022. 9. 23. How do I find files and total their sizes? $ find . -name 'flibble*' -ctime +90 -exec du -sh {} \; 2.1G ./flibble_116.log 2.1G ./flibble_83.log 2.1G ./flibble_211040_157.log 2.1G ./flibble3747_51.log Solution find . -name 'flibble*' -ctime +90 -exec du -shc {} + 2022. 8. 18. tcpdump # tcpdump -n -i eth0 tcp port 8000 # tcpdump -i eth0 -n -l -s0 -A tcp port 8000 2022. 4. 30. [Linux] CentOS 8: Failed to download metadata for repo 'appstream' [root@g15 ~]# yum list Failed to set locale, defaulting to C.UTF-8 CentOS-8 - AppStream 36 B/s | 38 B 00:01 Failed to download metadata for repo 'AppStream' Error: Failed to download metadata for repo 'AppStream' [root@g15 yum.repos.d]# ls CentOS-AppStream.repo CentOS-Debuginfo.repo CentOS-Media.repo CentOS-Vault.repo CentOS-Base.repo CentOS-Extras.repo CentOS-PowerTools.repo CentOS-centosplus.r.. 2022. 4. 23. 이전 1 2 3 4 ··· 23 다음 반응형