(不要なコード削除済み)
'use strict';
const functions = require('firebase-functions');
const {WebhookClient} = require('dialogflow-fulfillment');
const {Card, Suggestion} = require('dialogflow-fulfillment');| # 容量が大きい順に | |
| du -m | sort -rn | |
| # 容量が大きい順に20個表示 | |
| du -m | sort -rn | head -20 |
| #!/bin/bash | |
| if ! type convert > /dev/null 2>&1; then | |
| echo 'Require: ImageMagick' | |
| exit 1 | |
| fi | |
| if [ $# -ne 1 ]; then | |
| echo 'Usage: bash image-size.sh ${IMAGE_FILE}' | |
| exit 1 |
| #!/bin/bash | |
| if ! type convert > /dev/null 2>&1; then | |
| echo 'Require: ImageMagick' | |
| exit 1 | |
| fi | |
| if [ $# -ne 1 ]; then | |
| echo 'Usage: bash image-resizer.sh ${IMAGE_FILE}' | |
| exit 1 |
| #!/bin/bash | |
| if ! type convert > /dev/null 2>&1; then | |
| echo 'Require: ImageMagick' | |
| exit 1 | |
| fi | |
| if [ $# -ne 1 ]; then | |
| echo 'Usage: bash appicon-generator.sh ${IMAGE_FILE}' | |
| exit 1 |
| /* | |
| * 環境変数として以下を使用しています | |
| * - LINE_CHANNEL_ID | |
| * - LINE_CHANNEL_SECRET | |
| * - LINE_CHANNEL_MID | |
| * - FIXIE_URL | |
| * - APP_NAME | |
| */ | |
| <?php | |
| error_log("START: PHP"); |