CentOS8の本から
コメント行とから行を外す。
パターン①
cat .bash_profile | grep -v ^# | grep -v ^$
パターン②
grep -Ev "^#|^$" .bash_profile
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 3 years have passed since last update.
CentOS8の本から
コメント行とから行を外す。
パターン①
cat .bash_profile | grep -v ^# | grep -v ^$
パターン②
grep -Ev "^#|^$" .bash_profile
Register as a new user and use Qiita more conveniently
Go to list of users who liked