Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. vbaranov

    3004-004 You must "exec" login from the lowest login shell.

    One of the possile reasons for this is that either you exec any command like [COLOR=blue]sudo su -[/color blue] during the logon process or you have similar command(s) in your [COLOR=blue].profile[/color blue]. For example, for PuTTY SSH-client you may configure to exec any command...
  2. vbaranov

    rename all files with spaces in name

    In [COLOR=red]ksh[/color red] you may use the following script to do this: [COLOR=blue] IFS=' ' for n in `find . -type f -name "* *"` do NN=`echo $n|tr ' ' '_'` mv $n $NN done [/color blue] or as 1-liner: [COLOR=blue] IFS='\n';for n in `find . -type f -name "* *"`;do NN=`echo $n|tr ' ' '_'`;mv...
  3. vbaranov

    Anyone seeing logins hanging around in AIX5.2 ML04

    The script "utmp_clean.awk", mentioned above, really works (I've used it a few times), but you have to change the line utmp_name=sprintf("%s %s",$1,$2) to utmp_name=sprintf("%s %s",$1,$3) I found 2 versions of that script on IBM Web-site with these 2 lines being different in...

Part and Inventory Search

Back
Top