1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

Add -h option to ln(1).

This commit is contained in:
Jonas 'Sortie' Termansen 2020-04-13 15:00:25 +02:00
parent 90180a614f
commit 11ababec90

View file

@ -235,6 +235,7 @@ int main(int argc, char* argv[])
while ( (c = *++arg) ) switch ( c ) while ( (c = *++arg) ) switch ( c )
{ {
case 'f': force = true; break; case 'f': force = true; break;
case 'h': no_dereference = true; break;
case 'L': physical = false; break; case 'L': physical = false; break;
case 'n': no_dereference = true; break; case 'n': no_dereference = true; break;
case 'P': physical = true; break; case 'P': physical = true; break;