Slumberland rests easy after move away from proprietary Unix


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Slumberland rests easy after move away from proprietary Unix
# 1  
Old 11-17-2008
Slumberland rests easy after move away from proprietary Unix

11-17-2008 12:00 PM
In 2005, when Slumberland faced end-of-lifecycle replacements of its proprietary Unix platform, its warehouse management system (WMS) vendor suggested a move to Red Hat Linux and commodity x86 servers. Seth Mitchell, the infrastructure team manager at the large furniture retailer, gladly agreed. Upper management wasn't quite as quick to jump on the open source bandwagon, but once the cost savings started rolling in, everyone agreed that it was a profitable decision.



Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

easy UNIX for loop not working...

So, I am trying to find and print info about all of the .txt files in a current directory. This is the information that I intend to gather: -File number (say there are 6 .txt files in the directory...it would be incremented 1-6) -File name -File directory -Number of lines Pretty... (2 Replies)
Discussion started by: statichazard
2 Replies

2. Shell Programming and Scripting

Batch job in unix server to move the pdf file from unix to windows.

Hi Experts, I have a requirement where i need to setup a batch job which runs everymonth and move the pdf files from unix server to windows servers. Could some body provide the inputs for this. and also please provide the inputs on how to map the network dirve in the unix like that... (1 Reply)
Discussion started by: ger199901
1 Replies

3. Shell Programming and Scripting

Which unix is more easy with Oracle ?

Hi, currently our databasese are on AIX, but we plan to purchase new sever of unix except IBM.so colud you please tell en which unix flavor is more compatible with oracle sun solaris or HP unix and we also need list of SAN configuration. thanks a lot in advacne. (2 Replies)
Discussion started by: younusdba
2 Replies

4. Shell Programming and Scripting

Easy unix/sed question that I could have done 10 years ago!

Hi all and greetings from Ireland! I have not used much unix or awk/sed in years and have forgotten a lot. Easy enough query tho. I am cleansing/fixing 10,000 postal addresses using global replacements. I have 2 pipe delimited files , one is basically a spell checker for geographical... (4 Replies)
Discussion started by: dewsbury
4 Replies

5. UNIX for Dummies Questions & Answers

Need help on installing an EASY to use and easy to install command line text editor

Hi again. Sorry if it seems like I'm spamming the boards a bit, but I figured I might as well ask all the questions I need answers to at once, and hopefully at least get some. I have installed Solaris 10 on a server. The default text editors are there (vi, ex, ed, maybe others, I know emacs is... (4 Replies)
Discussion started by: EugeneG
4 Replies

6. UNIX for Dummies Questions & Answers

easy unix question

I am trying to check through all of a certain type of file in all main directories, and find the top 10 that are taking up the most space. How can I do that? I was thinking like du *.file | sort -n | head (1 Reply)
Discussion started by: wallacer
1 Replies

7. UNIX for Advanced & Expert Users

Proprietary vs. open Unix

Howdy all, I've used various applications in the past that ran in unix and windoze and unfortunately several of those programs are migrating to a windoze only environment so management is bagging the proprietary unix boxes in the process. AArrgggghh So here's my question for all you serious... (3 Replies)
Discussion started by: bulletbob
3 Replies

8. UNIX for Dummies Questions & Answers

Easy UNIX notation question

can anyone tell me what exactly the following UNIX notation code does cause I need to do the same in windows? for x in webapps/sal/*.htm* do mv $x $x.bak sed 's@bob@sal@g' $x.bak > $x done Thanks (1 Reply)
Discussion started by: lavaghman
1 Replies
Login or Register to Ask a Question
curs_move(3)						     Library Functions Manual						      curs_move(3)

NAME
curs_move, move, wmove - Move the Curses window cursor SYNOPSIS
#include <curses.h> int move( int y, int x ); int wmove( WINDOW *win, int y, int x ); LIBRARY
Curses Library (libcurses) STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: move, wmove: XCURSES4.2 Refer to the standards(5) reference page for more information about industry standards and associated tags. DESCRIPTION
These routines move the cursor associated with the Curses window to line y and column x. They do not move the physical cursor of the ter- minal until refresh is called. The specified position is relative to (0,0), which is the upper left-hand corner of the window. NOTES
The header file <curses.h> automatically includes the header file <stdio.h>. Note that move may be a macro. RETURN VALUES
These routines return the integer ERR upon failure and OK upon successful completion. SEE ALSO
Functions: curses(3), curs_refresh(3) Others: standards(5) curs_move(3)