파일 및 디렉토리 복사 ]# cp -r [복사원본명] [복사 위치] NAME cp - 파일 복사 SYNOPSIS cp [options] source dest cp [options] source... directory Options: [-abdfilprsuvxPR] [-S backup-suffix] [-V {numbered,existing,simple}] [--backup] [--no-dereference] [--force] [--interactive] [--one-file-system] [--preserve] [--recursive] [--update] [--verbose] [--suffix=backup-suf- fix] [--version-control={numbered,existing,simple}]..
정보 mysqldump란? MS-SQL에서 DataBase를 백업 받는 것과 동일한 개념으로 생각하면 된다. 1. mysqldump의 기본 mysql/bin]# mysqldump -u [계정] -p [DataBaseName] > [DumpFileName].sql 2. 특정 테이블 덤프 mysql/bin]# mysqldump -u [계정] -p [databaseName] [tableName] > [DumpFileName].sql 3. Table의 Skima만 백업 받기 mysql/bin]# mysqldump -d -u [계정] -p [DataBaseName] > [DumpFileName].sql 4. Table의 Data만 백업 받기 mysql/bin]# mysqldump -t -u root -p [Dat..
TAR 란? 파일 압축 및 해제 옵션] c : 압축 x : 압축 해제 v : 진행결과를 출력한다. f : 파일 z : gzip(gz) j : bzip2 (gz2) 압축 해제 test.tar tar xvf test.tar tar xvf taest.tar --directory /test test.tar.gz tar xvfz test.tar.gz tar xvfz taest.tar.gz --directory /test tar xvfz 파일명 or tar xvfz 파일명* test.tar.gz2 tar xvfj test.tar.gz2 압축 tar cvfz [파일명].tar.gz [디렉토리]or[파일]
액세스 한정자(public, protected, internal 또는 private)를 사용하여 다음의 선언된 액세스 가능성 중 하나를 멤버에 지정할 수 있습니다. 선언된 액세스 가능성 의미 public 액세스가 제한되지 않습니다. protected 포함하는 클래스 또는 여기에서 파생된 형식으로 액세스가 제한됩니다. internal 액세스가 현재 어셈블리로 제한됩니다. protectedinternal 현재 어셈블리 또는 포함하는 클래스에서 파생된 형식으로 액세스가 제한됩니다. private 액세스가 포함하는 형식으로 제한됩니다. protectedinternal 조합을 사용할 때를 제외하고는 멤버 또는 형식 하나에 액세스 한정자를 한 개만 지정할 수 있습니다. 네임스페이스에는 액세스 한정자를 사용할 수 없..
private void CopyWithProgress(string[] filenames) { // Display the ProgressBar control. pBar1.Visible = true; // Set Minimum to 1 to represent the first file being copied. pBar1.Minimum = 1; // Set Maximum to the total number of files to copy. pBar1.Maximum = filenames.Length; // Set the initial value of the ProgressBar. pBar1.Value = 1; // Set the Step property to a value of 1 to represent each..
using System; using System.Threading; // Simple threading scenario: Start a static method running // on a second thread. public class ThreadExample { // The ThreadProc method is called when the thread starts. // It loops ten times, writing to the console and yielding // the rest of its time slice each time, and then ends. public static void ThreadProc() { for (int i = 0; i < 10; i++) { Console.W..
- Total
- Today
- Yesterday
- 문자 자르기
- 표현 언어(expression language)
- java-개발 환경 설정하기
- 람다식(lambda expression)
- system.io
- REST API
- In App Purchase
- .submit()
- 스프링 프레임워크(spring framewordk)
- MainActor
- error-java
- nl2br
- React
- 제품 등록
- docker
- 특정 문자를 기준으로 자르기
- System.Diagnostics
- jsp 오픈 소스
- jstl(java standard tag library)
- 인텔리제이(intellij)
- 스프링 시큐리티(spring security)-http basic 인증
- await
- java.sql
- jstl(java standard tag library)-core
- 진수 변환
- java web-mvc
- 스프링 시큐리티(spring security)
- java 키워드 정리
- 메이븐(maven)
- 스프링 프레임워크(spring framework)
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |