Created
November 23, 2015 07:05
-
-
Save zhangyuchi/9ec3491e146e8631a8df to your computer and use it in GitHub Desktop.
取文件的第N行
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
awk -v a=$1 'NR==a {print $1}' $2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment