Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は .bash スクリプトを使用しており、ファイルから行を削除しようとしています
sed -e s/^DNS1.*/''/g -i $DNS_IP_CONFIG_FILE
空白行のままです。このコードにはバスクスペースが必要です
sed -i -e '/^DNS1/d' "$DNS_IP_CONFIG_FILE"
sed -i '/^DNS1.*/d' $DNS_IP_CONFIG_FILE