mirror of
				https://kkgithub.com/actions/setup-node.git
				synced 2025-11-04 04:31:55 +08:00 
			
		
		
		
	
		
			
	
	
		
			40 lines
		
	
	
		
			567 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
		
		
			
		
	
	
			40 lines
		
	
	
		
			567 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| 
								 | 
							
								# shebang-command [](https://travis-ci.org/kevva/shebang-command)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								> Get the command from a shebang
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								## Install
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								```
							 | 
						||
| 
								 | 
							
								$ npm install --save shebang-command
							 | 
						||
| 
								 | 
							
								```
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								## Usage
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								```js
							 | 
						||
| 
								 | 
							
								const shebangCommand = require('shebang-command');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								shebangCommand('#!/usr/bin/env node');
							 | 
						||
| 
								 | 
							
								//=> 'node'
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								shebangCommand('#!/bin/bash');
							 | 
						||
| 
								 | 
							
								//=> 'bash'
							 | 
						||
| 
								 | 
							
								```
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								## API
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								### shebangCommand(string)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#### string
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								Type: `string`
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								String containing a shebang.
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								## License
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								MIT © [Kevin Martensson](http://github.com/kevva)
							 |