# hello-docker **Repository Path**: wjn0918/hello-docker ## Basic Information - **Project Name**: hello-docker - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-10-15 - **Last Updated**: 2024-10-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ``` variable="world" # 变量不会被替换 cat << 'EOF' Hello, $variable EOF # 变量会被替换 cat << EOF Hello, $variable EOF ```