วิธีเชื่อมโยงกลุ่มคำสั่งใน Fish เช่น {…} Bash ได้อย่างไร


2

ฉันรู้คำสั่งโซ่ปลาผ่าน&&หรือ||แต่ฉันยินดีที่จะห่วงโซ่ชุดของคำสั่งของ

รหัส

env git clone --depth=1 https://github.com/rafaelrinaldi/theme-pure.git; or {
    printf "Error: git clone of theme-pure repo failed\n"
    exit 1
}

1
ใช้begin; commands; endแทน{ commands; }- fishshell.com/docs/current/commands.html#begin
glenn jackman

คำตอบ:


1

คุณต้องใช้beginและendคำหลักเพื่อแก้ปัญหานี้ (ขอบคุณความคิดเห็นglenn jackman ):

env git clone --depth=1 https://github.com/rafaelrinaldi/theme-pure.git; or begin;
    printf "Error: git clone of theme-pure repo failed\n"
    exit 1
end

คุณหมอ

ดูเอกสารอย่างเป็นทางการเริ่มต้น - เริ่มบล็อกรหัสใหม่

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.