Recent content by nikolaymartin

  1. nikolaymartin

    Check Java version from Command Line

    You can use the -version parameter for the java command like below. java -version Reference: https://www.poftut.com/check-java-version/
  2. nikolaymartin

    List Only Usernames

    You can use the cut command which will select the specified column. $cat /etc/passwd | cut -d : -f 1 Reference:https://www.poftut.com/list-users-groups-linux/
  3. nikolaymartin

    List installed packages

    It is easy as just use the following command. For more details take a look https://www.poftut.com/list-repository-packages-yum-command/
  4. nikolaymartin

    Awk Multiterm Match

    I want to match multiple search terms in awk with a single command. How ca i specify multiple search terms to math?
Top