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
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- Do it 자바스크립트 + 제이쿼리 입문
- node.js로 로그인하기
- 계산맞추기 게임
- props
- 자바스크립트
- 거북이 대포 게임
- 타자 게임 만들기
- Colaboratory 글자 깨짐
- intellij
- 모던자바스크립트
- 따라하며 배우는 노드 리액트 기본 강의
- react오류
- react
- vs code 내 node
- 웹 게임을 만들며 배우는 리액트
- JS 개념
- Python
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- node.js 설치
- 노드에 리액트 추가하기
- googleColaboratory
- Concurrently
- Spring-Framework
- 인프런
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- 모두의 파이썬
- DB Browser
- spring-boot
- 리액트
Archives
- Today
- Total
프로그래밍 삽질 중
ubuntu 파일, 폴더 삭제 및 생성, env 생성 본문
파일 삭제
https://codechacha.com/ko/linux-delete-dir-with-rm/
Linux - 파일, 디렉토리 삭제 명령어(rm -rf, rmdir)
리눅스(우분투)의 터미널에서 파일이나 디렉토리를 삭제하는 명령어들을 소개합니다. 다음과 같은 경우에 따라서, 사용해야하는 명령어가 조금씩 다릅니다. 파일 1개나 여러개를 삭제할 때, `rm
codechacha.com
파일 생성
https://uniksy1106.tistory.com/165
[LINUX] 리눅스에서 디렉토리 & 파일 생성 / 삭제
+ 리눅스에서 파일 복사와 삭제 방법~! - 디렉토리 생성 mkdir 디렉토리명 mkdir -p 디렉토리명/파일명 - 디렉토리 삭제 rmdir 디렉토리명 - 파일 생성 touch 파일명 ..
uniksy1106.tistory.com
정리된 코드
- 디렉토리 생성
mkdir 디렉토리명
mkdir -p 디렉토리명/파일명
- 디렉토리 삭제
rmdir 디렉토리명
- 파일 생성
touch 파일명
cat > 파일명
vi 파일명
- 파일 삭제
rm -rf 파일명
ubutu 내 .env 파일 생성(.gitignore에 설정할 경우 git clone에 파일이 없기 때문)
https://seungwon-code.blogspot.com/2021/06/ubuntu-1804-env.html
Ubuntu 18.04 .env 파일 생성, 숨김 파일 확인
코딩과 관련된 정보에 대한 블로그입니다.
seungwon-code.blogspot.com
'과거 프로그래밍 자료들 > DB(MYSQL)' 카테고리의 다른 글
sequelize는 왜 사용되는가? (0) | 2022.08.25 |
---|---|
ubuntu 터미널 종료 시에도 사이트 유지하기(npm pm2) (0) | 2022.08.12 |
ubuntu에서 연결한 url가 cannot get으로 나올 경우 (0) | 2022.08.12 |
ubuntu에 vscode 연결 + nginx reverse proxy 설정 및 ubuntu에서 생기는 오류 정리 (0) | 2022.08.12 |
ubuntu - mysql - aws 연결 (0) | 2022.08.11 |