Substitution of last command


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Substitution of last command
# 1  
Old 01-16-2005
Substitution of last command

"Is there any substituation of last command or script syntax which can be used as a user. As far I know the "last" command is being used to display information about previous logins. A member of adm group or the user adm can execute it only.

Thanks in advance for your usual help.

Ghazi
# 2  
Old 01-16-2005
I'm not too sure I follow - if you want to rerun the last command each shell has a different syntax to allow this - the last command shows a history of logins, not commands. Some OS's provide the lastcomm command if accounting is enabled, although this may require superuser privileges.

You can look into fc -e -, I always alias this (if not pre-aliased) to r in Bourne-type shells thusly:

alias r='fc -e -'

Then you can do stuff like

$ r ls
ls -la /my/dir


which will execute the last command in your history (providing your shell supports history) starting with "ls".

As I say, each shell supports differing history syntax and functionality, please post the output of
echo $0
echo $SHELL
uname -a
plus a further rundown of your exact requirements for a more detailed solution.

EDIT: Looking back at your OP, do you want to run last as a user that doesn't have the privilege to run the command? If so sudo may be the solution.

Cheers
ZB

Last edited by zazzybob; 01-16-2005 at 05:35 PM..
# 3  
Old 01-16-2005
I apprecate your quick response.

I am hp and using tcsh. I am not looking for whodo command output (output from the who, ps and acctcom) rather I am ONLY interested to find out when particular user was last time logged on to the system. Is there any way I can find out this if logged in as a develper (not root).

Thanks,
Ghazi
# 4  
Old 01-16-2005
last is supposed to be a user command. I just tried it on HP-UX 11.0 and it works fine for ordinary users.
# 5  
Old 01-16-2005
What could be the reason it is not working for me?

Thanks.
# 6  
Old 01-16-2005
I just tried it telnet-ing into the HP-UX 10.20 box at work and last works fine, also; I tried it on a bunch of Linux boxes, Solaris 9, and UNICOS and it works without a hitch.

Cheers
ZB
# 7  
Old 01-16-2005
Try using the full path: /usr/bin/last. If you still have trouble, tell us exactly what happens.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Regarding command substitution

Oracle Linux 5.6, 64-bit Given the following snippet wrkvar=`sqlplus -s / as sysdba <<EOF set echo off feedback off head off trimsp on select count(*) from v\$parameter where name in ('db_file_name_convert','log_file_name_convert') and value is not null; EOF` echo wrkvar=$wrkvarProduces... (2 Replies)
Discussion started by: edstevens
2 Replies

2. Shell Programming and Scripting

Substitution within string command

I have the following code: strfuture=abcdefghi ver=${strfuture:${count}:1} mj7777_ver=${ver} start_mj7777_iteration let count=count+1 When it is executed I get bad substitution. The same if I use ver=${strfuture:$count:1} mj7777_ver=${ver}... (6 Replies)
Discussion started by: Bruble
6 Replies

3. Shell Programming and Scripting

Command substitution in echo

a=1 b1=unix echo $b`$a` The above code is not working. Instead of printing the variable b1 using 'echo $b1', how to use variable 'a' to print 'b1' (1 Reply)
Discussion started by: thulasidharan2k
1 Replies

4. UNIX for Advanced & Expert Users

Help with command substitution in C program

Hi, I want to know if there's a cleaner way for assigning output of a unix command to a variable in C program . Example : I execute dirname fname and want the output to be assigned to a variable dname . Is it possible . I knew u can redirect the output to a file and then reread assigning... (5 Replies)
Discussion started by: royalbull
5 Replies

5. Shell Programming and Scripting

Repeating Substitution Command on VI

Hello Folks, how to write a command on vi that allow to repeat last substitution command? Here what I want to do : 1 2 3 1 2 3 1 2 3 :.,+2s/\n/ /And I obtain : 1 2 3 1 2 3 1 (5 Replies)
Discussion started by: gogol_bordello
5 Replies

6. UNIX for Dummies Questions & Answers

read command - using output from command substitution

Hey, guys! Trying to research this is such a pain since the read command itself is a common word. Try searching "unix OR linux read command examples" or using the command substitution keyword. :eek: So, I wanted to use a command statement similar to the following. This is kinda taken... (2 Replies)
Discussion started by: ProGrammar
2 Replies

7. UNIX for Dummies Questions & Answers

sed insert command and variable expansion/command substitution

I know this script is crummy, but I was just messing around.. how do I get sed's insert command to allow variable expansion to show the filename? #!/bin/bash filename=`echo $0` /usr/bin/sed '/#include/ { i\ the filename is `$filename` }' $1 exit 0 (8 Replies)
Discussion started by: glev2005
8 Replies

8. UNIX for Dummies Questions & Answers

Command substitution within an echo

I'm trying to get this to work and I'm not really sure how to do it. echo $x | awk '{print $NF}' MODIFIEDThe output I'm trying to get should look like: dir1 MODIFIED Where dir1 will be the result of: $x |awk '{print $NF}'I'm sure there's something I'm supposed to put around that part... (3 Replies)
Discussion started by: ewoods
3 Replies

9. Shell Programming and Scripting

Difference between "Command substitution" and "Process substitution"

Hi, What is the actual difference between these two? Why the following code works for process substitution and fails for command substitution? while IFS= read -r line; do echo $line; done < <(cat file)executes successfully and display the contents of the file But, while IFS='\n' read -r... (3 Replies)
Discussion started by: royalibrahim
3 Replies

10. Shell Programming and Scripting

complex command substitution

hi, I have to execute this line below from within a shell script; simply backquoting it is not doing the trick; it is mangling up all the options; but when i type it out on a command line, it executes cleanly. Please help me in getting this right; $ vlc -I dummy --sout='#transcode{vcodec=mp4v,... (5 Replies)
Discussion started by: spopuri
5 Replies
Login or Register to Ask a Question