Merge pull request #354 from konimex/master
Solaris: Better awk without gsub
This commit is contained in:
commit
b83210af5f
1 changed files with 1 additions and 1 deletions
2
neofetch
2
neofetch
|
@ -217,7 +217,7 @@ getdistro() {
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"Solaris")
|
"Solaris")
|
||||||
distro="$(nawk 'NR==1{gsub(/^ \t]+|[ \t]+$/,""); printf $1 " " $2;}' /etc/release)"
|
distro="$(awk 'NR==1{print $1 " " $2;}' /etc/release)"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Reference in a new issue