shell
Welcome to the 'shell' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'shell'.
Are you an expert about 'shell'? Do you want to be the Technorati authority on 'shell'? You can write a description that will appear right here:
Join Blogcritics!
Original Technorati articles tagged “shell”
-
in AutosEco Marathon of Future Cars: 3000 MPG?

Would you drive a bullet-shaped car?by ecoleader / on Mar 27, 2012 -
in FilmBig Oil and the Greedy Lying Bastards That They Are

Greedy Lying Bastards exposes big oil-- the filmmaker Craig Rosebraugh chats with Bryan Cain-Jackson about the filmby makingsense / on Mar 27, 2012 -
in FamilyCollecting Sea Shells Results in Dangerous Surprise for Toddler

6 year old Holly Smith had spent the day with her family at Point Lonsdale beach collecting seashells, a simple hobby enjoyed by hundreds of people every day.by jaideepkhanduja / on Mar 17, 2010
Latest blogosphere posts tagged “shell”
-
Connect (SSH) to Windows server via Linux server through a script and passing command.. but failing
—
Authority:
I am trying to connect to Windows server via Linux server through a script and run two commands " cd and ls " But its giving me error saying " could not start the program" followed by the command name i specify e g : "cd" i am trying in this manner " ssh username@servername "cd c:/data/mystuff ; ls " Note : I ...15 hours ago -
Script to give a user sudo permissions
—
Authority:
Can some one please let me know a script which gives the user sudo permissions? Thanks in advance....15 hours ago -
Script Conversion
—
Authority:
How acn I convert the below Batch Script to Linux Shell Script. :: FileDel.bat ( Input File Delete Program) :: Parameter- Fully qualified file...15 hours ago -
Spliting a file and creating new files using Perl script
—
Authority:
Hi All, I am new to Scripting language. I want to split a file and create several subfiles using Perl script. Example : File format : Code: Sourcename ID Date Nbr SU ...15 hours ago -
Need specific date in CCYY-MM-DD.HH.MM.SS.mmmmmm format
—
Authority:
Hi All, If i have a specific date say "20130619 01:02:02.123456" [YYYYMMDD format], what is the unix command to display in CCYY-MM-DD.HH.MM.SS.mmmmmm format? Thanks in Advance,15 hours ago -
sed remove everything between two string
—
Authority:
Hi all, I have this input: Code: "203324780",,"89321213261247090146","VfdsD150","0D","fd3221","V0343","aaa","Direkt","fsa","2015.02.27","39833,54454,21214",,,"fd","NORMAL","D","10fd","1243 Flotta","HiĂĄnytalan","2013.02.25",,"2013.02.25","2013.02.24","2013.02.28",,"SajĂĄt ...15 hours ago -
How to transfer file from Local PC to UNIX Directory without FTP?
—
Authority:
Dear All, i am trying to get the file from windows location to unix location without using FTP and neither thru entering the user id and password. I have one unix form which is running on web application and user is entering the location and file name there now i know the file name and path. So i just need that file ...16 hours ago -
London Array
Business Excellence —
Authority: 118
It was in July 1887 that Scottish academic James Blyth installed the world’s first electricity-generating wind turbine. Although at the time considered uneconomical in the UK, electricity generating wind turbines proved to be far more cost effective in countries with widely scattered populations, a fact that saw ...16 hours ago -
Sftp - password change / expired
—
Authority:
What happens to sftp when unix password expires / changes ? Do we need to regenerate keys again ? Please help.16 hours ago -
Shell Script for generating NTIDs(Usernames) from the email ids which exists in MSAD Directory
—
Authority:
Hi Everyone, I just need a shell script which automatically gives the list of NT IDs mean the Usernames from the list of email ids. We have around 140 users from AMERICAS,ASIAPACIFIC and EMEA User Directories and we have their email ids.For ex. i have email id called naveen-kumar.dasu@hp.com and this user NT ID is ...16 hours ago -
Find files for a specific date
—
Authority:
Hi, I am looking to find files of a specific date. I am on Sun Solaris so newermt doesnot work.. I thought of using mtime but not getting how to use it. Please help me with this.. Regards Abhinav16 hours ago -
Time Stap Diff using Bash
—
Authority:
hi all kindly i want to subtract to time stamps like: Code: t1=08:35:20 t2=08:36:58 diff=00:01:38 or diff=01:38 using bash thanks alot16 hours ago -
Substitute string with an index number
—
Authority:
Objective is to substitute Jan with 01, Feb with 02 and so on. The month will be provided as input. I could construct below awk and it worked. Code: echo Jun | awk BEGIN{split("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec",mon," ")}{ for (i=1;i Wanted to know if there are better alternatives17 hours ago -
Find common words
—
Authority:
Hi, I have 10 files which needs to be print common words from those all files. Is there any command to find out.17 hours ago -
Execution problem with shell script for modifying a user
—
Authority:
Code: #/bin/sh echo "enter the user name" read $username echo "Enter new home directory" read $newhd usermod -d $newhd $username ;; error while executing : Code: enter the user name Rev Enter new home directory: /home/ 58745 usermod: option requires an argument -- d Try `usermod --help or `usermod ...17 hours ago -
Shell ‘uses sabotage claims to avoid blame for Nigeria oil spills’
—
Authority:
The National Contact Point (NCP) agency will today give Shell a rap on the knuckles for its reporting of its spills in the Niger Delta region, some of which have been highly damaging to the environment. NCP has reached this conclusion following an investigation into accusations by Amnesty International and Friends of ...18 hours ago -
While read line in shell
—
Authority:
Guys, I have a requirement like below my cfg file(sam.cfg) has path=/u/sample/test/ path=/u/sample1/test1/ path=/u/sample2/test2/ days=10 file=*.log My script is below, #!/bin/sh ./u/sample/sam.cfg while read line do find $path -name "$file" -mtime +$days -exec ls -la {} \; 2> /dev/null > sam.log done ...18 hours ago -
While,for ,if loop...help me
—
Authority:
Hi All Need you help on a script logic : I have a file a.out which contain Code: A345 B456 C876 This file is recieved after running a script. Now if the script doesnt generate this file then it echo "no issue" Code: while [ -f a.out ] do ...................... done echo "no issue" . The above is the ...18 hours ago -
Dont Translate File and Folder VBScript Scripts into PowerShell
—
Authority:
Summary : Simplify your code and do not translate an old file and folder VBScript script into Windows PowerShell. Hey, Scripting Guy! I know there are not really established patterns and practices for writing VBScript code, or even for writing Windows PowerShell script. But there is code that I like to ...18 hours ago -
Read line from a .gz file
—
Authority:
Hi , I am trying to read a .gz file through while and for loop like : Code: for files in `find . -type f -name "*.gz"` do while read line do echo "`wc -l $files|awk {print $1}`;`echo $line |cut -c86-99`;"NS" >> ${TMP_DIR}/${TMP_FILENAME} done ...1 day ago



Follow Technorati