Sponsored Content
Top Forums Shell Programming and Scripting Howto Print File Path or Print the Filename Post 302360411 by overkill on Thursday 8th of October 2009 11:28:41 PM
Old 10-09-2009
Howto Print File Path or Print the Filename

I'm trying to clean up my samba share and need to print the found file or print the path of the image it tried to searched for. So far I have this but can't seem to get the logic right. Can anyone help point me in the right direction?

Code:
 
for FILE in `cat list`; do
     if [ ! -z `find /opt -name $FILE` ];
     then
          echo "File $FILE does not exists"
     else
          echo "$FILE exists"
     fi
done


Last edited by zaxxon; 10-09-2009 at 01:51 AM.. Reason: code tags and indention
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

perl: howto print to screen & filehandle

Hello, I need to print messages both to screen and to file handle in perl , like tee does in unix . Any suggestions ? Thanks (2 Replies)
Discussion started by: Alalush
2 Replies

2. Shell Programming and Scripting

print the filename

#!/bin/ksh for files in `ls *.gz` do gunzip -c $files | awk -v s=$files -F\" '{print s","$6}' done I have tried FILENAME parameter but it did not work please help. (1 Reply)
Discussion started by: harshakirans
1 Replies

3. UNIX for Dummies Questions & Answers

find locked files, print file path, unlock file

using OS X and the Terminal, I'd like to find all locked files in a specified directory, unlock them, and print a list of those files that were unlocked how can I do this? I'm familiar with chflags nouchg for unlocking one file but not familiar with unix enough to do what I'd like. Thanks! (0 Replies)
Discussion started by: alternapop
0 Replies

4. Shell Programming and Scripting

awk print: howto single quote not interpreted!?

cat a | awk -F";" '{print "update db set column=' "$2" ' where column1=\""$1"\";"}' > ip-add.sql Hi! I'm a new user! i need to use single quote in the double quotes print string The apex between che "$2" should not be interpreted, but....how?! I'm trying to use \ but don't work correctly! ... (4 Replies)
Discussion started by: Re DeL SiLeNziO
4 Replies

5. Shell Programming and Scripting

Print only Filename based on given String on file name

Hi, I am new to this unix world. Any ways, I would like to write a shell script that can print the file name. Ex : directory will have 5 files with different name.No matter what are contents are. Now I need to find the file which will have particular name (sub string ).Please do not... (5 Replies)
Discussion started by: akb2010
5 Replies

6. Shell Programming and Scripting

Print filename with awk

I can got the filename with this script. it's only show "-" in result. cut -d , -f7 CSV_d.* | awk 'OFS=":"{print FILENAME,substr($1,1,8),substr($1,9,2),substr($1,11,2),substr($1,13,2)}' | sort |uniq (2 Replies)
Discussion started by: before4
2 Replies

7. Shell Programming and Scripting

print all filenames in directory with path to another file

hi, i have a directory at /path/unix with the following files 1.txt 2.txt 3.txt 4.txt I want to make another file called filenames.txt at a different location called /path/home. So, my output file would be /path/home/filenames.txt with contents /path/unix/1.txt... (1 Reply)
Discussion started by: jacobs.smith
1 Replies

8. Shell Programming and Scripting

Use while loop to read file and use ${file} for both filename input into awk and as string to print

I have files named with different prefixes. From each I want to extract the first line containing a specific string, and then print that line along with the prefix. I've tried to do this with a while loop, but instead of printing the prefix I print the first line of the file twice. Files:... (3 Replies)
Discussion started by: pathunkathunk
3 Replies

9. Linux

How to print full path name along with file extension?

Hi I have a requirement like this: /abc/a/x.txt /abc/a/y.txt /abc/b/x.gz /abc/b/y.txt I need output like this: /abc/a:*.txt /abc/b:*.txt /abc/b:*.gz I have tried find /abc -type f -name "*.*" ||awk -F . '{print $NF}' it is print only extensions without path name. Please... (5 Replies)
Discussion started by: lijjumathew
5 Replies

10. Shell Programming and Scripting

How to print contents of file when the file path is in a variable?

The file f1 contains the text "body" (shell prompt is "$"): $ cat ~/path/f1 body How to print contents of f1 when the f1 path is in a variable? Here is my failed attempt: $ f1="~/path/f1" $ echo $f1 ~/path/f1 $ cat $f1 cat: '~/path/f1': No such file or directory (2 Replies)
Discussion started by: wolfv
2 Replies
KTRDUMP(8)						    BSD System Manager's Manual 						KTRDUMP(8)

NAME
ktrdump -- print kernel ktr trace buffer SYNOPSIS
ktrdump [-cfqrtH] [-i ktrfile] [-M core] [-N system] [-o outfile] DESCRIPTION
The ktrdump utility is used to dump the contents of the kernel ktr trace buffer. The following options are available: -c Print the CPU number that each entry was logged from. -f Print the file and line number that each entry was logged from. -q Quiet mode; do not print the column header. -r Print relative timestamps rather than absolute timestamps. -t Print the timestamp for each entry. -H Print the thread ID for each entry. -i ktrfile File containing saved ktr trace events; for more information see the ktr(4) manual page. -N system The kernel image to resolve symbols from. The default is the value returned via getbootfile(3). -M core The core file or memory image to read from. The default is /dev/mem. -o outfile The file to write the output to. The default is standard output. SEE ALSO
ktr(4), ktr(9) HISTORY
The ktrdump utility first appeared in FreeBSD 5.0. AUTHORS
The ktrdump utility was implemented by Jake Burkholder <jake@FreeBSD.org>. This manual page was written by Chad David <davidc@FreeBSD.org>. BSD
February 6, 2015 BSD
All times are GMT -4. The time now is 06:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy