InterviewSolution
Saved Bookmarks
| 1. |
Set The Display Automatically For The Current New User? |
|
Answer» – export DISPLAY=`EVAL ‘who am i | cut -d”(” -F2 | cut -d”)” -f1’`Here in above command, see single quote, double quote, grave ACCENT is USED. Observe carefully. – export DISPLAY=`eval ‘who am i | cut -d”(” -f2 | cut -d”)” -f1’`Here in above command, see single quote, double quote, grave accent is used. Observe carefully. |
|