Bash Script 檔案及目錄是否存在
檢查檔案是否存在#!/bin/bash
if [ -f "/path/to/dir/filename" ]; then# 檔案 /path/to/dir/filename 存在echo "File /path/to/dir/filename exists."else# 檔案 /path/to/dir/filename 不存在echo "File /path/to/dir/filename does not exists."fi
沒有留言:
張貼留言