Search results

  1. E

    Add New User with Specific Expire Date

    You can use the -e and -f options like below. $ useradd -e 2017-02-28 -f 60 john For more details: https://www.poftut.com/add-new-user-account-linux/
  2. E

    Disable Selinux Temporarily

    You can use the -e and -f options like below. $ useradd -e 2017-02-28 -f 60 john For more details: https://www.poftut.com/add-new-user-account-linux/
  3. E

    Awk Multiterm Match

    You can use $awk '/A/ > /B/' alphabet.txt A or B will match in the given file named alphabet.txt for more details: https://www.poftut.com/awk-print-tutorial-with-examples/
Top