about summary refs log tree commit diff stats
path: root/wikipages/unixprotips.wiki
diff options
context:
space:
mode:
authorahriman <ahriman@falte.red>2019-04-24 23:59:58 +0000
committerahriman <ahriman@falte.red>2019-04-24 23:59:58 +0000
commit02a0b396b499f0d645c1905b02b0686d939167b7 (patch)
tree72e8872356e1976e27a2f4b08bf2a225beb95bdd /wikipages/unixprotips.wiki
parent3caf4cbae7f16e25bf33f7afb98274458c6b60e7 (diff)
downloadsite-02a0b396b499f0d645c1905b02b0686d939167b7.tar.gz
removed old wiki
Diffstat (limited to 'wikipages/unixprotips.wiki')
-rw-r--r--wikipages/unixprotips.wiki29
1 files changed, 0 insertions, 29 deletions
diff --git a/wikipages/unixprotips.wiki b/wikipages/unixprotips.wiki
deleted file mode 100644
index 6d9e9a0..0000000
--- a/wikipages/unixprotips.wiki
+++ /dev/null
@@ -1,29 +0,0 @@
-<!--
-    author: xvetrd
-    title: Unix ProTips
-    description:
--->
-
-<h2>UNIX ProTips</h2>
-<p>I realized today I wasn't getting mail notifications, and I hadn't
-set them up on this shell. So here are some things I do on my
-local machine that work here:</p>
-<p>To get the shell to tell you when you have new mail, after command
-executions, add this to your <code>.profile</code></p>
-
-<p><code>export MAILCHECK=0</code></p>
-
-<p>And, if you want, you can have a persistent notification when you
-have un-incorporated mail, or more specifically, when your
-<code>/var/mail/&lt;username&gt;</code> isn't empty.</p>
-
-<p><code>PS1="\$([-s /var/mail/`whoami` ] && echo '* ')$PS1"</code></p>
-
-<p>This works in /bin/ksh, I can't speak for other shells.</p>
-
-<p>If anybody else has some quick tips they would like to share, I
-encorage them to edit this page.</p>
-
-<p>Happy Unixing!</p>
-
-<a href="/wiki">Back to Wiki</a>