You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/cmd/gather/linkedin.go
+8-1
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@ package gather
3
3
import (
4
4
"GoMapEnum/src/linkedin"
5
5
"GoMapEnum/src/logger"
6
+
"errors"
6
7
7
8
"github.com/spf13/cobra"
8
9
)
@@ -16,6 +17,12 @@ var linkedinCmd = &cobra.Command{
16
17
Long: `Firstly, it will search for company based on the provided name and then list all the people working at these companies and print them in the specified format.
17
18
The session cookie is needed to use the Linkedin features.`,
linkedinCmd.Flags().BoolVar(&linkedinOptions.Email, "email", true, "Guess the email according to the format. If false print the first name and last name")
33
41
linkedinCmd.Flags().BoolVarP(&linkedinOptions.ExactMatch, "exactMatch", "e", false, "Exact match of the company's name")
34
42
linkedinCmd.Flags().StringVarP(&linkedinOptions.Cookie, "cookie", "s", "", "Session cookie named li_at")
0 commit comments