Câu trả lời:
ssh remote-host-ip '. ~/your_profile; mkdir your_directory'
không biết ý của bạn chính xác là "theo ngày", nhưng bạn có thể kiểm tra trước mkdir như dưới đây
ssh remote-host-ip '. ~/your_profile; test -d your_directory || mkdir your_directory'
nếu bạn muốn một tên thư mục như bạn đề cập, hãy thử
ssh remote-host-ip '. ~/your_profile; test -d your_parent_directory/$(date +%Y%M%d) || mkdir your_parent_directory/$(date +%Y%M%d)'
like
vì vậy