Personally, I would try to use awk instead of cut, especially if the data in the columns ins't lined up. If the data is lined up, why not just use cut -c?
this will pull out your column B from file1 and put it into file2
(for other columns, change the $2 to what ever column # you need. (you can even pull multiple columms
If this won't work, and you still need to use cut, you can replace the spaces with a comma, or what ever delimiter you need.
Search & Replace in VI
in vi type
:%s/ /,/g This will replace all tabs with a comma
to replace multiple spaces, or multiple tabs, just put the number of spaces or tabs in the first part of the search & replace
I am using : << cut / cut to comment out block of code.
Works fine on few lines of script, then it gives me this cryptic error when I try to comment out about 80 lines.
The "warning " is at last line of script.
done < results
169 echo "END read all positioning parameters"
170... (8 Replies)
I'm a complete beginner in UNIX (and not a computer science student either), just undergoing a tutoring course. Trying to replicate the instructions on my own I directed output of the ls listing command (lists all files of my home directory ) to My_dir.tsv file (see the screenshot) to make use of... (9 Replies)
Hi
Can anyone what I am doing wrong while using cut command.
for f in *.log
do
logfilename=$f
Log "Log file Name: $logfilename"
logfile1=`basename $logfilename .log`
flength=${#logfile1}
Log "file length $flength"
from_length=$(($flength - 15))
Log "from... (2 Replies)