Skip to content

Commit

Permalink
Fixed help text
Browse files Browse the repository at this point in the history
  • Loading branch information
terminationshock committed Feb 16, 2024
1 parent 5759676 commit 1dbf65e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,13 @@ func PrintHelp() {
fmt.Println(" will display all files in the directory and copy the selected")
fmt.Println(" file to the parent directory by executing `cp <file name> ..`")
fmt.Println(" when [Enter] is pressed.")
fmt.Println("\n grep -r func | ./lisst \"^(.*?):\" vi")
fmt.Println("\n grep -r func | lisst \"^(.*?):\" vi")
fmt.Println(" or")
fmt.Println(" grep -r func | ./lisst --filename vi")
fmt.Println(" grep -r func | lisst --filename vi")
fmt.Println(" will recursively grep for \"func\" in all files, highlight all")
fmt.Println(" file names, and open the text editor `vi <file name>` when")
fmt.Println(" [Enter] is pressed.")
fmt.Println("\n squeue -u $USER | ./lisst --show-output \"^\\s*([0-9]{1,})\\b\" scontrol show job")
fmt.Println("\n squeue -u $USER | lisst --show-output \"^\\s*([0-9]{1,})\\b\" scontrol show job")
fmt.Println(" will query SLURM for all running jobs of the current user,")
fmt.Println(" highlight all job IDs, and show details of the selected job by")
fmt.Println(" executing `scontrol show job <job ID>` when [Enter] is pressed.")
Expand Down

0 comments on commit 1dbf65e

Please sign in to comment.