console
-
s3api 예제 (aws s3api cli example)Cloud 2021. 7. 7. 09:29
* 2021년 7월 기준 작동을 확인하였다. 1. 전체 파일 및 디렉토리 조회 $ aws s3api list-objects --bucket mybucket 2. 디렉토리 생성 : Create directory $ aws s3api put-object --bucket mybucket --key path/to/ - key 문자열 시작시 / (slash) 없음 - key 문자열 마지막 / (slash) 있음 3. 디렉토리 삭제 : Delete directory $ aws s3api delete-object --bucket mybucket --key path/to/ - key 문자열 시작시 / (slash) 없음 - key 문자열 마지막 / (slash) 있음 - 디렉토리내 파일을 모두 삭제하는경우 디렉토리도 ..
-
Console 에서 F# 솔루션 및 프로젝트 생성하기F# 2019. 4. 14. 18:41
1. 솔루션 생성 $ dotnet new sln -n [Solution name] 예) dotnet new sln -n FunGame 2. 콘솔 프로젝트 생성 $ dotnet new console -lang F# -n [Project Name] 예) dotnet new console -lang F# -n Game 3. 유닛 테스트 프로젝트 생성 $ dotnet new xunit -lang F# -n [Unit test proejct name] 예) dotnet new xunit -lang F# -n Game.Test 4. (생성한) 콘솔 프로젝트를 솔루션에 추가 $ dotnet add [Solution name.sln] add [./path/to/project.fsproj] 예) dotnet add Fu..