> For the complete documentation index, see [llms.txt](https://docs-epc.gitbook.io/ncs-documents/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-epc.gitbook.io/ncs-documents/storage/object-storage-s3/access-s3-bucket-with-s3cmd/basic-command.md).

# Basic command

## List Buckets

โดยจะแสดงรายชื่อ Bucket ทั้งหมดภายใน project นั้น

```bash
s3cmd ls
```

<figure><img src="/files/4Z4MFlG5M59CPXOD2XEX" alt=""><figcaption></figcaption></figure>

## Put Objects

การ upload ข้อมูลเข้าไปยัง S3Bucket

โดยข้อมูลที่ต้องการมีดังนี้

* ไฟล์ที่ต้องการ upload ( FILE )
* ชื่อ Bucket ( BUCKET )
* ชื่อที่อยู่ไฟล์ปลายทาง ( PREFIX )
* หากข้อมูลที่ต้องการ upload เป็น directory ให้ใส่ flag --recursive

```bash
s3cmd put FILE [FILE...] s3://BUCKET[/PREFIX]
```

<figure><img src="/files/kdD7bC2Jrly3UIKI4EIJ" alt=""><figcaption></figcaption></figure>

## List Objects

การเรียกดูรายชื่อ Objects ภายใน Bucket

โดยข้อมูลที่ต้องการมีดังนี้

* ชื่อ bucket ที่ต้องการเรียกดูข้อมูล ( Bucket )

```bash
s3cmd ls [s3://BUCKET[/PREFIX]]
```

<figure><img src="/files/dTNAMLE8T884O0KfnRMJ" alt=""><figcaption></figcaption></figure>

## Get Objects

โดยข้อมูลที่ต้องการมีดังนี้

* ชื่อ Bucket ( BUCKET )
* ชื่อ Object ที่ต้อง ( OBJECT )
* ชื่อไฟล์ที่ต้องการบันทึก ( LOCAL\_FILE )
* หากข้อมูลที่ต้องการ download เป็น directory ให้ใส่ flag --recursive

```bash
s3cmd get s3://BUCKET/OBJECT LOCAL_FILE
```

<figure><img src="/files/IR7WvVXZy3XE1RczGhS0" alt=""><figcaption></figcaption></figure>

## Delete Objects

การ Download Objects ภายใน Bucket

โดยข้อมูลที่ต้องการมีดังนี้

* ชื่อ Bucket ( BUCKET )
* ชื่อ Object ที่ต้องการลบ ( OBJECT )

```bash
s3cmd rm s3://BUCKET/OBJECT
```

<figure><img src="/files/X1SLoQ1gr15C4pD5ZgpG" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs-epc.gitbook.io/ncs-documents/storage/object-storage-s3/access-s3-bucket-with-s3cmd/basic-command.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
