WTF(6) BSD Games Manual WTF(6)NAME
wtf -- translates acronyms for you
SYNOPSIS
wtf [-f dbfile] [is] acronym ...
DESCRIPTION
The wtf utility displays the expansion of the acronyms specified on the command line. If the acronym is not in any of the acronyms data-
bases, wtf will check to see if the acronym is known by whatis(1), pkg_info(1), or via pkgsrc's internal help mechanism, ``make help
topic=XXX''.
If ``is'' is specified on the command line, it will be ignored, allowing the fairly natural ``wtf is WTF'' usage.
The following options are available:
-f dbfile
Overrides the default acronym database, bypassing the value of the ACRONYMDB variable.
ENVIRONMENT
ACRONYMDB The default acronym database may be overridden by setting the environment variable ACRONYMDB to the name of one or more space-sep-
arated file names of acronym databases. The files must be in the proper format (acronym[tab]meaning).
FILES
/usr/share/misc/acronyms default acronym database.
/usr/share/misc/acronyms.comp computer-related acronym database.
SEE ALSO make(1), pkg_info(1), whatis(1)HISTORY
wtf first appeared in NetBSD 1.5.
BSD July 27, 2007 BSD
Check Out this Related Man Page
SET_MAGIC_QUOTES_RUNTIME(3) 1 SET_MAGIC_QUOTES_RUNTIME(3)set_magic_quotes_runtime - Sets the current active configuration setting of magic_quotes_runtimeSYNOPSIS
bool set_magic_quotes_runtime (bool $new_setting)
DESCRIPTION
Set the current active configuration setting of magic_quotes_runtime.
Warning
This function has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 7.0.0.
ERRORS /EXCEPTIONS
Since PHP 5.3 this function has been deprecated and will raise an E_DEPRECATED warning upon execution. Since PHP 5.4 this function will
also raise an E_CORE_ERROR on trying to enable magic quotes.
PARAMETERS
o $new_setting
- FALSE for off, TRUE for on.
RETURN VALUES
Returns TRUE on success or FALSE on failure.
EXAMPLES
Example #1
set_magic_quotes_runtime(3) example
<?php
// Create a temporary file pointer
$fp = tmpfile();
// Write some data to the pointer
fwrite($fp, ''PHP' is a Recursive acronym');
// Without magic_quotes_runtime
rewind($fp);
set_magic_quotes_runtime(false);
echo 'Without magic_quotes_runtime: ' . fread($fp, 64), PHP_EOL;
// With magic_quotes_runtime
rewind($fp);
set_magic_quotes_runtime(true);
echo 'With magic_quotes_runtime: ' . fread($fp, 64), PHP_EOL;
// Clean up
fclose($fp);
?>
The above example will output:
Without magic_quotes_runtime: 'PHP' is a Recursive acronym
With magic_quotes_runtime: 'PHP' is a Recursive acronym
SEE ALSO get_magic_quotes_gpc(3), get_magic_quotes_runtime(3).
PHP Documentation Group SET_MAGIC_QUOTES_RUNTIME(3)
I am kind of new with Unix and I really need some help. Can you please tell me what the 'whatis' command is? and what does it do?
Let's say that I have a file which I want to delete, what command will I need to use?
If I have a directory that I want to delete all files from what command do... (11 Replies)
Discussion started by: mischiefdemon
11 Replies
2. Forum Support Area for Unregistered Users & Account Problems
Hello,
Looking for acronym translation for UIK and UAK. Not sure if there could be multiples, just looking for what would be most common in DB marketing .
Cheers! (2 Replies)
I'm trying to install SCO Unix 4.1 (Yes I know...wtf are you doing with 4.1?)Anyway, I have a New Dell PowerEdge 430 Server and I am trying to install this OS....I get to the part where it asks for the second disk FD(N2) and it dumps and restarts? Any help would be greatly appreciated! ... (1 Reply)
I want to check which databases are installed on my FreeBSD installation. This is what I did: pkg_info | grep mysql
How do I check all in one go whether also sqlite, postgresql, firebird is installed?
Thanks in advance (3 Replies)
Hello,
I'd like to handle incoming (uploaded) files from a shell script, ideally without busy polling / waiting (e.g. running a cron task every 15'). Is there a command that would just sleep until a new entry has been created in a directory, allowing scripts such as the following:
while... (9 Replies)
Ok so I have searched google pretty exstensively to find this out, no luck so far . . .
Basically I wanted to know what "Eris Free" means, from the acronym EFNET.
I was thinking that Eris is generally to do with discordianism, but have so far only found it as a reference to... (2 Replies)
I would like to find all acronyms in a document and surround them with "\sc" so that "ABC " goes to "\sc{abc}" (In Latex this converts the acronym to small-caps)
an acronym is defined here as more than one capital letter with no lower case letters attached.
test input:
small BIG smallBIG... (1 Reply)