2
sử dụng if if in linux để tìm xem thư mục có tồn tại hay không
Tôi có tập lệnh bash sau: if [ -d "/$home/DB_handouts"] then echo "Directory DB_handouts found" else mkdir /$home/DB_handouts chmod 777 /$home/DB_handouts fi Chạy mã trên tạo ra một lỗi: ./file.sh: line 12: syntax error near unexpected token `else' ./file.sh: line 12: ` else' Làm thế nào tôi có thể sửa …