Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update HTTP to HTTPS #21

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ original state is restored and command is detached.
For exemple:

relink 5453
relink 5453 | grep usefull_line
relink 5453 | grep useful_line

`relink` maintains stderr from original command to stderr. So you can do things
like:
Expand All @@ -84,7 +84,7 @@ Launch a command on this named pipe:

Note that `relink` only redirects output. The target process keep its original
terminal. So if you type Ctrl+Z or CTRL+C, they are not sent to target process.
If you want to do that, you should check the [`reptyr`](http://github.com/nelhage/reptyr) command from Nelson Elhage.
If you want to do that, you should check the [`reptyr`](https://github.com/nelhage/reptyr) command from Nelson Elhage.

Trick with Makefile
---------------------
Expand Down Expand Up @@ -155,4 +155,4 @@ was written by Nelson Elhage <[email protected]>.

URL
---
[http://github.com/jerome-pouiller/reredirect]()
[https://github.com/jerome-pouiller/reredirect]()
2 changes: 1 addition & 1 deletion relink
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ usage() {
echo
echo 'Exemples:'
echo ' relink $(pidof dhclient)'
echo ' relink $(pidof dhclient) | grep usefull_line'
echo ' relink $(pidof dhclient) | grep useful_line'
}

# detach
Expand Down
2 changes: 1 addition & 1 deletion reredirect.1
Original file line number Diff line number Diff line change
Expand Up @@ -160,5 +160,5 @@ was written by Nelson Elhage <[email protected]>.

.SH HOMEPAGE

.URL http://github.com/jerome-pouiller/reredirect
.URL https://github.com/jerome-pouiller/reredirect

2 changes: 1 addition & 1 deletion reredirect.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ int main(int argc, char **argv) {
break;
case 'V':
printf("This is reredirect version %s.\n", REREDIRECT_VERSION);
printf("http://github.com/jerome-pouiller/reredirect/\n");
printf("https://github.com/jerome-pouiller/reredirect/\n");
exit(0);
default: /* '?' */
usage_die("Unknown option\n");
Expand Down