10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
file1.txt
file2.txt
file3.txt
desired output is
each file is in the same directory, hasthe same number of columns but different rows. i want to be able to paste them into one file.
thanks! (5 Replies)
Discussion started by: johnkim0806
5 Replies
2. Shell Programming and Scripting
Hello folks,
I've a (perhaps) simple question.
In a text file I've :
server_name1: directory1
server_name2: directory2
server_name3: directory3
I want to make a loop that lets me connect and operate on every server:
rsh server_name1 "ls -l directory1"
I've tried with awk,... (6 Replies)
Discussion started by: gogol_bordello
6 Replies
3. Shell Programming and Scripting
hi everybody,
can you help me with this?
important: it has to be a pure perl code.
zz.lis:
accessibility
arabic
archivers
astro
audio
benchmarks
.
.
.
"ls accessibility | grep -v Makefile" outputs
accerciser
at-poke
at-spi
at-spi-reference (6 Replies)
Discussion started by: pseudocoder
6 Replies
4. UNIX for Dummies Questions & Answers
I want to change the name of some of my files (mypics-0001, mypics-0002, mypics-0003.....mypics-0240) and I want to double check to see if this code is right:
x=0
until
do
sed 's/mypics\-*/bday/g'
done
Would this change all of my file names to "bday0001....bday0240"?
Please let me... (0 Replies)
Discussion started by: jvpike
0 Replies
5. UNIX for Dummies Questions & Answers
paste -d "\0" ap_cntrl_total.txt.1 ap_cntrl_total.txt.2, and it shows:
01234567890911051342C091026 0000910517990000000000009105179900000000CHOPME
it put space btwn 1026 and 000091
should not have space.
---------- Post updated at 03:54 PM ---------- Previous update was at 03:03 PM... (1 Reply)
Discussion started by: tjmannonline
1 Replies
6. Shell Programming and Scripting
hi,
I have a file with content like this for an employee:
EmployeeID
101
Day_type, day
vacation,1/2/2009
sick day, 3/2/2009
personal day, 4/5/2009
jury duty day, 5/5/2009
how do I make the result to show:
EmployeeID,Day_type,day
101,vacation,1/2/2009
101,sick day,... (6 Replies)
Discussion started by: jbchen
6 Replies
7. Shell Programming and Scripting
Dear All,
Recently got some sample from internet search for array handle in shell script, and I can not understand why we need to put double brackets when extracting array values by this way :
for ((i=0; i<${#admins}; i++)); do
echo "${admins}"
done
if modify from double to single... (2 Replies)
Discussion started by: tiger2000
2 Replies
8. Programming
This is the code and I'm wondering why line 14: a = ... and line 16: b = ... is wrong.
This is the first time I've tried to use this. Please help me.
#include <stdio.h>
#include <math.h>
// The link and how the double pow is used.
//
// http://www.nextdawn.nl/c-reference/pow.php
//... (2 Replies)
Discussion started by: pwanda
2 Replies
9. UNIX for Dummies Questions & Answers
We have a guy at work who is trying to copy and paste from one file to another using vi and highlighting the code to copy with a mouse.
Source file:
xyz 123 abc 999
zyx 321 cba 999
xyz 123 abc 999
But when he pastes it he gets (I put the underlines in to show... (4 Replies)
Discussion started by: dlam
4 Replies
10. Shell Programming and Scripting
how can i make a script or command to have output like this
$cat file
10000 20000
$cat a
10000
$cat b
20000
this is the solution paste a b > file
but another solution?
$cat file
10000 20000 (3 Replies)
Discussion started by: kenshinhimura
3 Replies