随笔- 310
文章- 1
评论- 0
阅读-
85655
12 2023 档案
shell getopts 用法
摘要:#!/bin/bash func() { echo "Usage:" echo "test.sh [-j S_DIR] [-m D_DIR]" echo "Description:" echo "S_DIR,the path of source." echo "D_DIR,the path of d
阅读全文
腾讯云api-python调用
摘要:https://cloud.tencent.com/document/product/1278/46716 # -*- coding: utf-8 -*- import hashlib, hmac, json, os, sys, time from datetime import datetime
阅读全文
mysql GROUP_CONCAT
摘要:select id,group_concat(distinct age) from test_group_concat group by id; select id,group_concat(id,'_', age SEPARATOR ';') from test_group_concat grou
阅读全文