summaryrefslogtreecommitdiff
path: root/snippets/sh-mode/if_last_command_failed
diff options
context:
space:
mode:
Diffstat (limited to 'snippets/sh-mode/if_last_command_failed')
-rw-r--r--snippets/sh-mode/if_last_command_failed6
1 files changed, 6 insertions, 0 deletions
diff --git a/snippets/sh-mode/if_last_command_failed b/snippets/sh-mode/if_last_command_failed
new file mode 100644
index 00000000..33596dd0
--- /dev/null
+++ b/snippets/sh-mode/if_last_command_failed
@@ -0,0 +1,6 @@
+# -*- mode: snippet -*-
+# name: if_last_command_failed
+# key: <ilcf
+# --
+
+if [ $? -eq 0 ]; then \ No newline at end of file