Sponsored Content
Full Discussion: append a ' to the $1 $2
Top Forums Shell Programming and Scripting append a ' to the $1 $2 Post 302199294 by zaxxon on Monday 26th of May 2008 09:42:09 AM
Old 05-26-2008
Hi, I tried to escape it inside awk, but I found no way to get it work, but this one works, defining the single quotation mark as a shell variable and handing it over to awk like this:

Code:
VAR="'"

awk -v var=${VAR}  '{print var$1var}' infile

laters
Zaxxon
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

append question

I have a .pl script that is grabbing information and creating two different .txt files, I need to append one to the other. open GARPFILE; open GARPFILEXX; cat $gGarpFileXx >> $gGarpFile; close GARPFILE; close GARPFILEXX; but I'm getting this: Useless use... (1 Reply)
Discussion started by: mr_evans2u
1 Replies

2. Shell Programming and Scripting

Append with TM symbol

I have a file with delimiter ";" and 2 columns for eg: Transparent; ScotchPro™ If you see carefully you can see a special character "TM" at the end of data which is not showing up when I read the data in a regular sequential file. Did anyone anytime tackle this kind of Data. Please advice.... (1 Reply)
Discussion started by: ganesh123
1 Replies

3. UNIX for Dummies Questions & Answers

ftp append

What is the syntax for an ftp that is appending to the target file? I understand to use the append command, but how do you tell it which source file to append to which target file. ftpEngine() { ftp -inv ${FTP_SERVER} << EOF_FTP >> ${FTP_LOG} user ${FTP_USER} ${FTP_PSWD} cd ${FTP_DIR1}... (1 Reply)
Discussion started by: brdholman
1 Replies

4. Shell Programming and Scripting

Append value in a file

Dear all, I have output in file like below: and I need to append number starts from 901 til 909 to the end of each line please help. 109;0;109 109;1001;109 109;101;109 109;102;109 109;1101;109 109;1301;109 109;1401;109 109;162;109 109;1;109 109;201;109 109;202;109 109;216;109... (4 Replies)
Discussion started by: sfaqih
4 Replies

5. Shell Programming and Scripting

append last line

Suppose i have a file FILE1.TXT 2293847982374 sdj 23423 2298372038974 dsj 23492 2972837629376 abj 34929 2984836398384 abc 39723 I want to append the above FILE1.TXT with total no of records and appending to the last line with "3000004" total 7 digits only, if 12 records then "3000012" to... (11 Replies)
Discussion started by: kshuser
11 Replies

6. Shell Programming and Scripting

append first line

I like to append the first line of a file with some value. file1.dat 2111111111 23498ljljkj 2222222222 234kjkjs9 2333333333 98234lkjs 2444444444 0923skdfj i want to append some value eg: 1200910270040625 to the file1.dat how to do this in KSH I should have the outfile... (3 Replies)
Discussion started by: kshuser
3 Replies

7. UNIX for Dummies Questions & Answers

Append file

Hello all, I require assistance in combining files. This is the scenario: I've got lots of files which contain one column in each file and would like to combine the files into one so that the contents of the file can be sorted. For example, File 1 File 2 ... a d b e c ... (7 Replies)
Discussion started by: Muhammad Rahiz
7 Replies

8. UNIX for Dummies Questions & Answers

Copy and append

Ok, Here it goes. I have several file in a directory that I want to copy to another directory and append the date to the end of the file. I do not want to zip the I just need a copy. I would like the script to ask the user before copying each file in the directory to keep from making unneeded... (1 Reply)
Discussion started by: Dougj75
1 Replies

9. Shell Programming and Scripting

Append file

Legends, I need to append the file. please help me out. Current contents are /tmp/a.txt # e11.Mer.out.host1 "fun.tp" read e11.Mer.out.host2 "fun1.tp" read e11.Mer.out.host3 "fun2.tp" read... (7 Replies)
Discussion started by: sdosanjh
7 Replies

10. Shell Programming and Scripting

Grep and append

Have a string as below in a file. "anohter boy has id 000921 and girl has id=655 of roll number" using grep below commands with grep commands but able to get one string at a time, not able to append. less <filename> | grep -o -P '(?<=id ).*(?=and )' less <filename> | grep -o -P... (1 Reply)
Discussion started by: Satyak
1 Replies
GIT-VAR(1)							    Git Manual								GIT-VAR(1)

NAME
git-var - Show a Git logical variable SYNOPSIS
git var ( -l | <variable> ) DESCRIPTION
Prints a Git logical variable. OPTIONS
-l Cause the logical variables to be listed. In addition, all the variables of the Git configuration file .git/config are listed as well. (However, the configuration variables listing functionality is deprecated in favor of git config -l.) EXAMPLE
$ git var GIT_AUTHOR_IDENT Eric W. Biederman <ebiederm@lnxi.com> 1121223278 -0600 VARIABLES
GIT_AUTHOR_IDENT The author of a piece of code. GIT_COMMITTER_IDENT The person who put a piece of code into Git. GIT_EDITOR Text editor for use by Git commands. The value is meant to be interpreted by the shell when it is used. Examples: ~/bin/vi, $SOME_ENVIRONMENT_VARIABLE, "C:Program FilesVimgvim.exe" --nofork. The order of preference is the $GIT_EDITOR environment variable, then core.editor configuration, then $VISUAL, then $EDITOR, and then the default chosen at compile time, which is usually vi. GIT_PAGER Text viewer for use by Git commands (e.g., less). The value is meant to be interpreted by the shell. The order of preference is the $GIT_PAGER environment variable, then core.pager configuration, then $PAGER, and then the default chosen at compile time (usually less). SEE ALSO
git-commit-tree(1) git-tag(1) git-config(1) GIT
Part of the git(1) suite Git 2.17.1 10/05/2018 GIT-VAR(1)
All times are GMT -4. The time now is 08:00 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy