[ Main ] [ Home ] [ Work ] [ Code ] [ Rants ] [ Readings ] [ Links ] |
[2024] [2023] [2022] [2021] [2020] [2019] [2018] December November October September August July June May April March February January [2017] [2016] [2015] [2014] [2013] [2012] [2011] [2010] [2009] [2008] [2007] [2006] [2005] [2004] [2003] |
[Tue Nov 27 11:23:18 CST 2018]A tip on something I just needed a few minutes ago. I had to use the vim editor temporarily ignoring the default configuration set in the rc file just for this session. To accomplish this, run the command with the following options: This is documented in the FAQ. {link to this entry}$ vim -u NONE -U NONE -N -i NONE [Mon Nov 26 11:45:10 CST 2018]Here is something I didn't have to do in a log time, but I needed it today. However, since it belongs in the old UNIX toolbox, plenty of people wouldn't even know it exists. When you need to log out of a remote system and move on but, at the same time, do not want to end a particular process (e.g., a download operation of some sort), use the nohup command: By default, the information that would usually go to stdout and stderr will be saved in a$ nohup myscript.sh nohup.out file in the same directory where you
ran the command from. If you prefer to use something else, though, the
screen command works fine for this purpose too.
{link to this entry}
|