This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# ychat | |
# simple multicast chat tools on the shell (only supported bash) | |
# copyrights: koki yasuda aka orleika <[email protected]> | |
# Licensed under MIT | |
# | |
# Usage: | |
# ychat | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: clean receiver sender | |
receiver: | |
clang -Os -o receiver receiver.c | |
strip --strip-all receiver | |
gzip -c receiver | base64 > receiver.dump | |
sender: | |
clang -Os -o sender sender.c | |
strip --strip-all sender | |
gzip -c sender | base64 > sender.dump | |
.PHONY: clean |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
All public gists https://gist.github.com/orleika | |
COPYRIGHT (c) 2018 orleika | |
MIT License | |
Permission is hereby granted, free of charge, to any person obtaining | |
a copy of this software and associated documentation files (the | |
"Software"), to deal in the Software without restriction, including | |
without limitation the rights to use, copy, modify, merge, publish, | |
distribute, sublicense, and/or sell copies of the Software, and to |
OlderNewer