16
27

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

よく使うバージョン確認コマンド集

Last updated at Posted at 2020-01-16

スキルシート等を書くときにバージョン確認コマンドを調べるのが、
結構手間だったので集めてみました。

Linux環境を想定していますが、
OS別などその限りではないのもあります。

#言語別

##Java

$ java -version

##Python

$ Python -V

##Flask

$ flask --version

##PHP

$ php -v

##Ruby

$ ruby -v

##Ruby on Rails

$ rails -v

##Perl

$ perl -v

#ミドルウェア別

##Apache

$ https -V

##Nginx

$ nginx -V

#OS別

##Windows

C:\>ver

##Mac OS X

$ sw_vers

##Amazon Linux

cat /etc/system-release

##CentOS

$ cat /etc/redhat-release

##Ubuntu

$ cat /etc/lsb-release

#SQL別

##MySQL

$ mysql -V

##PostgreSQL

$ psql —version

##Oracle Database

SQL> select * from v$version;

##MongoDB

$ mongo -version

##SQLite

$ sqlite3 --version

##ソフトウェア別

##Git

$ git --version

##Heroku

$ heroku --version

##Vagrant

$ vagrant version

##Docker

$ docker version

このコマンド追加して欲しいなどありましたら、
お気軽にコメント頂ければと思います。

16
27
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
27

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?