Add colon.fish for : compatibility with sh and bash

no-op function for compatibility with sh, bash, and others.
Often used to insert a comment into a chain of commands without having
it eat up the remainder of the line, handy in Makefiles.
This commit is contained in:
Mahmoud Al-Qudsi 2018-03-14 17:41:09 -05:00
parent 06c8440d72
commit 007ae0b15e

View file

@ -0,0 +1,5 @@
function :
# no-op function for compatibility with sh, bash, and others.
# Often used to insert a comment into a chain of commands without having
# it eat up the remainder of the line, handy in Makefiles.
end