Skip to content

Instantly share code, notes, and snippets.

@flxxyz
Created January 6, 2018 11:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flxxyz/274dac102def0f3578a35423640ccf54 to your computer and use it in GitHub Desktop.
Save flxxyz/274dac102def0f3578a35423640ccf54 to your computer and use it in GitHub Desktop.
aria2c自建管理脚本
#!/bin/sh
path=`pwd`
case "$1" in
start)
echo -n "Starting aria2c"
aria2c --conf-path=${path}'/conf/aria2.conf' -D
;;
stop)
echo -n "Shutting down aria2c "
killall aria2c ;;
esac
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment