You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							24 lines
						
					
					
						
							446 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							24 lines
						
					
					
						
							446 B
						
					
					
				
								package command
							 | 
						|
								
							 | 
						|
								import (
							 | 
						|
									"fmt"
							 | 
						|
									"runtime"
							 | 
						|
								
							 | 
						|
									"github.com/chrislusf/seaweedfs/weed/util"
							 | 
						|
								)
							 | 
						|
								
							 | 
						|
								var cmdVersion = &Command{
							 | 
						|
									Run:       runVersion,
							 | 
						|
									UsageLine: "version",
							 | 
						|
									Short:     "print SeaweedFS version",
							 | 
						|
									Long:      `Version prints the SeaweedFS version`,
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								func runVersion(cmd *Command, args []string) bool {
							 | 
						|
									if len(args) != 0 {
							 | 
						|
										cmd.Usage()
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									fmt.Printf("version %s %s %s\n", util.Version(), runtime.GOOS, runtime.GOARCH)
							 | 
						|
									return true
							 | 
						|
								}
							 |