コマンドに変数をどのように挿入できますか?以下の場合は、コマンドを変数ファイル名に関連付ける必要があります。
#!/bin/bash
# Define a timestamp function
timestamp() {
date +"%D-%T" | tr :/ -
}
# Define the file name
value=$(timestamp)
filename= "/home/pi/media/$value.h264"
#Recording
raspivid -w 800 -h 600 -t 15000 -o $filename -n -rot 270
#Terminate the script
exit
ベストアンサー1
後にスペースを追加することはできません。filename=
スペースを削除するだけです。