mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
11 lines
176 B
Plaintext
11 lines
176 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# Program: ignore
|
||
|
#
|
||
|
# Synopsis: Ignore the result code of the command and always return 0
|
||
|
#
|
||
|
# Syntax: ignore command <arguments>
|
||
|
|
||
|
"$@" || exit 0 && exit 0
|
||
|
exit 0
|