Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- 줄바꿈 문자
- 네트워크
- profile
- Eclipse
- Mac
- web.xml
- lsof
- ssh
- maVen
- tomcat
- VirtualBox
- import
- vscode
- Quartz
- IntelliJ
- find
- bash
- JavaScript
- resource
- 단축키
- Source
- grep
- context
- port
- Windows
- GIT
- plugin
- Windows 10
- netsh
- xargs
Archives
- Today
- Total
develog
[Linux] endian 확인 본문
터미널에서 실행
# 1 이면 Little Endian
# 0 이면 Big Endian
echo -n I | od -to2 | head -n1 | awk '{print $2;}' | cut -c6
Comments