Sponsored Content
Top Forums Shell Programming and Scripting Find and replace the path value in files, pattern is not full known. Post 303018362 by RudiC on Monday 4th of June 2018 03:22:39 PM
Old 06-04-2018
And what would your code snippet in post#1 have done to those files a.txt and b.txt?
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

find pattern in FILES and replace it ??

Hi How can I looking for a pattern found in more than one file and replace it with anther pattern this what I was used: find . -name "account.adrs" -depth -follow -exec grep -l "Email = ;" {} \; this print the files name -which is account.adrs- and its path -which is deferent for each... (4 Replies)
Discussion started by: tamer
4 Replies

2. Shell Programming and Scripting

to find the file with full path

Hi, I have written this shell script: fl=`ls -1lrt $mylist | grep '\.xml$' | awk '{print $9}'` echo $fl (1) for i in $fl do for dir in $mylist do if then echo $dir/$i >> tmp (2) fi done done The mylist contains some directory names. The satement (1) gives the sorted list... (5 Replies)
Discussion started by: surjyap
5 Replies

3. Shell Programming and Scripting

Replace a filename with full path using sed

hi, i need to replace a line a file with a new raw device location.. original file.. /opt/sybase/ASE1502/ASE-15_0/bin/dataserver \ -d/data/TST_AKS1/sybdevices/master.dat \ -e/logs/sybase/TST_AKS1/SFO_TST_AKS1.log \ -c/apps/sybase/ASE1502/ASE-15_0/TST_AKS1.cfg \... (2 Replies)
Discussion started by: aksaravanan
2 Replies

4. Shell Programming and Scripting

List files with full path

Hi all, How to save file full name to a file. I tried the following but don't know to include path name. $ ls -l | awk '{print $9}' > outputfile.dat $ cat outputfile.dat fifth.txt first.txt fourth.txt second.txt third.txt My wanted result is ie: ... (3 Replies)
Discussion started by: mr_bold
3 Replies

5. UNIX for Dummies Questions & Answers

Listing files with full path

Hi, I need to store all the files in a directory to a text file with its full path. The example below can explain: ./File1.txt ./File2.txt ./Folder1/File11.txt ./Folder1/File12.txt ./Folder1/Folder11/File111.txt ./Folder2/file21.txt : : The ls -R1 command won't give the result as... (5 Replies)
Discussion started by: r_sethu
5 Replies

6. Shell Programming and Scripting

How to extract strings from full path when full path is not fixed

/Path/snowbird9/nrfCompMgrRave1230100920.log.gz:09/20/2010 06:14:51 ERROR Error Message. /Path/snowbird6/nrfCompMgrRave1220100920.log.gz:09/20/2010 06:14:51 ERROR Error Message. /Path/snowbird14/nrfCompMgrRave920100920.log.gz:09/20/2010 06:14:51 ERROR Error Message.... (0 Replies)
Discussion started by: Shirisha
0 Replies

7. Emergency UNIX and Linux Support

Find, replace, file path in multiple files for Solaris 10

Guys I have a big issue that I need to get fixed ASAP however I can not seem to find a way to do it. We started to use zones with Solaris 10 at work and we moved a zone from a SIT box to a DEV box. Problem is the software we have installed is looking at a /lcl/sit/apps/ path and it needs to look... (5 Replies)
Discussion started by: LRoberts
5 Replies

8. Shell Programming and Scripting

Pattern match a path anywhere in the line and replace it with new path

I want to pattern match only path part from below and replace them with new path string. LoadModule jk_module /fldrA/fldrBaf/fldrCaa/modules/mod_jk.so JkWorkersFile /fldrA/fldrBaf/fldrCaa/config/OHS/ohs1/workers.properties JkLogFile... (4 Replies)
Discussion started by: kchinnam
4 Replies

9. Shell Programming and Scripting

Comment all lines which are not already commented for each full path pattern matched

Hello. Question 1 : I want to comment out all lines of a cron file which are not already commented out for each full path pattern matched. Example 1 nothing to do because line is already commented out; pattern = '/usr/bin/munin-cron' # */5 * * * * munin test -x... (3 Replies)
Discussion started by: jcdole
3 Replies

10. UNIX for Beginners Questions & Answers

30 days old files with full path

my requirement is 30 days old files along with size and pull path of the file (file should be listed in descending by size). output: 12345 /app/testing/file1 12341 /app/testing/file2 (5 Replies)
Discussion started by: Rajesh123
5 Replies
KLONE(1)							   KoanLogic Srl							  KLONE(1)

NAME
klone - KLone swiss army knife SYNOPSIS
klone [klone_opts] [-c cmd] [cmd_opts] [cmd_args] DESCRIPTION
klone performs two different tasks depending on the argument supplied to the -c switch: import a site directory tree into the KLone building environment (i.e. the embedded file system), or translate static and dynamic pages into C files. The translation phase is rarely seen by the user since it is hidden in the Makefile of the site building directory, i.e. ${KLONE_SRC_DIR}/site. Generally, the developer gets an embedded version of his/her site by providing the following command sequence: $ cd ${KLONE_SRC_DIR}/site $ ../src/tools/klone/klone -c import ${SITE_BASE_DIR} $ make The latter make invocation calls 'klone -c translate' over the imported files to perform the needed translation and registering (pre-linking). Note that whenever a source file is added, removed or renamed, or in case the embedded file system encrypting key changes, the import operation must be done again. The subsequent phase, by which the embedded site is linked to the kloned server skeleton, does not involve klone anymore. Nevertheless, the steps are illustrated here for reference: $ cd ${KLONE_SRC_DIR} $ make That's all. OPTIONS
-h Display a brief help and exit. -v Enable verbose mode. -V Print klone version and exit. COMMANDS
Translate: klone -c translate -i infile -o outfile -u uri [-E] [-k keyfile] [-z] Translate the active (i.e. a .klone file) or static page infile into C file outfile. The -u option specifies the uri associated with the translated file. The -E option tells klone to encrypt the file content with the key enclosed in the supplied keyfile or in the environment variable KLONE_CIPHER_KEY using AES-256 CBC. The contents of the translated files are compressed based on their MIME type if the -z flag is given. Import: klone -c import [-b uri] [-e pattern] [-x pattern] [-k keyfile] [-Z pattern] [-z] dir Import the site tree starting at dir into the KLone building environment. The command output comprises two makefiles (autogen.mk and autogen.dps) and the register.c file which will gather the imported and translated site files. The latter file is the glue by which the embedded site can afterwards be linked to the HTTP/S server. When the -e flag is given, the files matching the specified pattern will be encrypted using the key enclosed in the supplied keyfile or in the environment variable KLONE_CIPHER_KEY. The user can choose whether to compress all the imported files based on their MIME type, using the -z flag, or to select a subset matching the supplied shell pattern. If, while importing, you don't want to include a set of files you can use the -x argument to provide the pattern of files you want to exclude. Arguments -x, -Z and -e may be used more then once. ENVIRONMENT
The following environment variable affects the execution of klone: KLONE_CIPHER_KEY If set, klone tries to read the embedded file system encryption key from it. It is be overridden by the -k option. DIAGNOSTICS
The klone utility exits with EXIT_SUCCESS on success, and with EXIT_FAILURE if an error occurs. SEE ALSO
kloned(8), kloned.conf(5). BUGS
If you find one, please email it to <klone-bug@koanlogic.com> KoanLogic Srl 11/03/2005 KLONE(1)
All times are GMT -4. The time now is 03:04 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy