목록기타 (41)
honey_pot
!find . -type f -name "*meta*" -exec rm {} \; meta가 들어가는 파일 찾아서 rm $ tar xvf xvfz pinpoint-agent-2.0.4.tar.gz --strip 1 상위 폴더 제외하고 압축해제 !find . -name “*_s_*” -exec cp ‘{}’ /Volumes/TOSIBA_2TB/상품_이미지_원천/yolov5_dataset/single_images/ \; _s_가 들어가는 파일들 해당 경로로 cp \; 앞에 스페이스바 있음 !bsdtar xf coffeetea2.zip --strip-components=1 -C coffee zip 파일 해제시 --strip-components 2 쓰기 위해 bsdtar 사용 --exclud..
1. __MACOSX 제거 zip -d compressfilename.zip __MACOSX/\* 2. .DS_Store 제거 zip -d compressfilename.zip \*/.DS_Store
[Linux/Ubuntu] 파일, 폴더 개수 확인하기 현재 위치에서의 폴더 개수 ls -l | grep ^d | wc -l 현재 위치에서의 파일 개수 ls -l | grep ^- | wc -l 현재 폴더의 하위 파일 개수 find . -type f | wc -l
맨날 검색해서 그냥 정리하는 게 낫겠다 되돌리기 반대가 뭐지... 되돌리기 반대 검색하니까 되돌리기 취소 라는 단어를 사용하는 걸 보고 무엇을 배우던 가중치만 다르지 결국 1개국어임을 느낌 다른 ide 단축어도 추가할 예정
anaconda로 주피터노트북 만지다가 tensorflow에서 딱 막힘 m1 파이썬 3.9는 지원하지 않는 까다로움에 miniforge 깔고 가상환경 다시 만듦.... ⭐️ anaconda 가상환경 안 되니까 miniforge로 하기 ( 아나콘다 왜 깔았냐고..) 1. Miniforge 설치 ➡️ M1용 Miniforge Shell Script 다운로드 https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-MacOSX-arm64.sh ➡️ 터미널 열고 차례대로 입력 $ chmod +x ~/Downloads/Miniforge3-MacOSX-arm64.sh $ sh ~/Downloads/Miniforge3-MacOSX-arm..
초기화 git init git remote add origin https://github.com/~.git git pull origin 브런치이름 master 브랜치 main으로 변경 git branch -m master main git fetch origin git branch -u origin/main main 브랜치 추가 git branch -M [브런치이름] 브랜치 생성 및 이동 git branch [브런치이름] 브랜치 이동 git checkout 브런치이름 staging, 커밋 git add . (혹은 파일이름) git commit -m "커밋메시지" git push origin 브런치이름 (오류 뜨면 잘 보고 -f) 커밋 리셋 git reset HEAD~1 ( 개수별로 가장 최신 커밋 res..
https://downloads.mysql.com/archives/workbench/ MySQL :: Download MySQL Workbench (Archived Versions) Please note that these are old versions. New releases will have recent bug fixes and features! To download the latest release of MySQL Workbench, please visit MySQL Downloads. MySQL open source software is provided under the GPL License. downloads.mysql.com 업데이트 이후에는 다운그레이드 하지 않고 최신 버전 받아도 설치된다 ..