Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

rushlast(1) [debian man page]

RUSHLAST(1)							      Gnurush							       RUSHLAST(1)

NAME
rushlast - retrieve information of previous uses of rush SYNOPSIS
rushlast [-F STRING] [-f DIR] [-n NUM] [--forward] [-H] rushlast {-v | -h | --usage} DESCRIPTION
rushlast is a utility to search backwards in the session history that GNU rush maintains about all users calling on its services. OPTIONS
-F STRING | --format=STRING Use specified format string instead of the default string. -f DIR | --file=DIR Use database directory DIR. Default location is /var/lib/rush. --forward Display entries in chronological instead of reverse time order. The latter is the default mode of operation. -n NUM | --count=NUM | -NUM Show at most NUM records. The numerical form '-NUM' is to provide compatibility with the standard utility last(1). -H | --no-header Suppress the header line in printout. -v | --version Display program version. -h | --help Display a short help message. --usage Display a concise usage summary. SEE ALSO
The full documentation for rushlast is maintained as a Texinfo manual. If the info and rush programs are properly installed at your site, the command info rush should give you access to the complete manual. See also rush(8) and rushwho(1). AUTHOR
This text was written by Mats Erik Andersson for the Debian project, since the original source supplies a documentation only in the form of a GNU Texinfo manual. GNU Rush 1.7 December 2010 RUSHLAST(1)

Check Out this Related Man Page

SUPERTUX(6)							   Games Manual 						       SUPERTUX(6)

NAME
supertux - a classic 2D jump 'n run sidescroller game SYNOPSIS
supertux [options] filename DESCRIPTION
This manual page documents briefly the supertux command. This manual page was written for the Debian distribution because the original program does not have a manual page. supertux is a classic 2D jump'n run sidescroller game in a similar style like the original SuperMario games. OPTIONS
These programs follow the usual GNU command line syntax, with long options starting with two dashes (`-'). A summary of options is included below. --fullscreen Run in fullscreen mode. --opengl If opengl support was compiled in, this will enable the EXPERIMENTAL OpenGL mode. --sdl Use non-opengl renderer --disable-sound If sound support was compiled in, this will disable sound for this session of the game. --disable-music Like above, but this will disable music. -j, --joystick NUM Use joystick NUM (default: 0) --joymap XAXIS:YAXIS:A:B:START Define how joystick buttons and axis should be mapped. --worldmap Start in worldmap-mode (EXPERIMENTAL). -d, --datadir DIR Load Game data from DIR (default: automatic). --debug-mode Enables the debug-mode, which is useful for developers. -h, --help Show summary of options. --usage Display a brief message summarizing command-line options. --version Display the version of SuperTux you're running. AUTHOR
This manual page was written by Gurkan Sengun <gurkan@linuks.mine.nu>, for the Debian project (but may be used by others). May 6, 2004 SUPERTUX(6)
Man Page

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Can't detect usb thumbdrive anymore

hey everyone! i have a Solaris 8 box with me, and i had been using my usb thrumbdrive on it all the time. one day, i was in a rush and i pulled out the thumbdrive without ejecting it or anything. and now i can't detect any thumbdrives at all. i had tried using another thumbdrive, but with no... (2 Replies)
Discussion started by: feef
2 Replies

2. Programming

SIGSEGV, Segmentation fault

Here is my initiating code: #define NUM 20 static struct tab { int count; int use; } tab; int curtab = 0; int tab_create(int tab_count) { curtab++; tab.use = 1; tab.count = tab_count; kprintf("here!"); return curtab; } (2 Replies)
Discussion started by: micmac700
2 Replies

3. UNIX for Advanced & Expert Users

How to grep

Hi , How to check in a delimited : ", " file in unix, to count how many records have missing info on any particular column in the header file? Ex: Cntry,PST_DT,CC_CD,Amt (header info) IL,23OCT2005,840,1.00 (data) Basically I need to check how many records have missing information in... (3 Replies)
Discussion started by: dwandbi
3 Replies

4. Shell Programming and Scripting

Replacing dot for comma

I wanted to change 34.66 to 34,66. I tried the command: sed 's/./,/' $NUM Where $NUM is a variable with 34.66 value. The output is ,4.66 (2 Replies)
Discussion started by: bdalmeida
2 Replies

5. Shell Programming and Scripting

o/p of awk to variable

Hi All, I have the below file: sample.cfg ---------- SYS_TEST TEST1 TEST2 and I have set the blow: NUM=1 I am running the command: awk -v numb=`expr $NUM + 1` '/SYS_TEST/ {print \$numb}' sample.cfg The output is TEST2 as expected. BUt I am unable to assign this output to a... (4 Replies)
Discussion started by: deepakgang
4 Replies

6. Shell Programming and Scripting

:integer expression expected

Hi, echo $i until || do read NUM if && ; then printf "$FBOLD\nInvalid number, please enter valid backup number: $FREG" fi done Getting below error : ./import_location.sh: line 234: [: : integer expression expected ./import_location.sh: line 234: [: :... (5 Replies)
Discussion started by: milink
5 Replies

7. Shell Programming and Scripting

Passing variables problem - Bash

I have a following problem: #!/bin/bash NUM=`cat accounts | wc -l`; for i in {1..$NUM} do account=`awk "NR==$i" accounts`; echo -e "\nAccount: $account\n"; sudo ./backup_maildir $account; done "accounts" is a file with regular e-mail addresses, one in each line.... (2 Replies)
Discussion started by: bobanpetrovic
2 Replies

8. Programming

How to decrease a string number by one in C?

If i have a macro called NUM which is "8" (string) for example How do I make it into say "7", well i just want to lower it by one, also there will never be the case where its "0" and i have to decrease it. there is no guarantee how many digits NUM could have, but will always be an integer. How... (6 Replies)
Discussion started by: omega666
6 Replies

9. Shell Programming and Scripting

Please help on AWK

Please help me. 1)I have a file "test.txt" with below content 1546 2346 8765 2380 2)I have a variable called "NUM". number variable is assigned with 5674 NUM=5674 3) How to subtract the first record with NUM variable? I tried below but its below awk command but its showing 0 as... (3 Replies)
Discussion started by: prince1987
3 Replies