06-03-2014
Great...it absolutely looks like a machine language.
10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
I have a text file with full list of files with their full path. I wanted to sort it by directory then files then subdirectory by alphabetically. When I used the sort command it doesn't give like what I want. Could somebody help me on this.
Here is the ex:
This is what I'm getting... (2 Replies)
Discussion started by: javidraaj
2 Replies
2. Shell Programming and Scripting
Hi,
I have a file abcd.txt which has contents in the form of full path file names i.e.
$home> vi abcd.txt
/a/b/c/r1.txt
/q/w/e/r2.txt
/z/x/c/r3.txt
Now I want to retrieve only the directory path name for each row
i.e
/a/b/c/
/q/w/e/
How to get the same through shell script?... (7 Replies)
Discussion started by: royzlife
7 Replies
3. Shell Programming and Scripting
/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
4. UNIX for Dummies Questions & Answers
Hi,
Is there a command that tells you right away the current working directory? I know the command "pwd", but that one gives the full path.
if pwd gives me:
/a/b/c/d/ggg/HERE
I want something that will give me:
HERE
Thanks,
Gaurab (13 Replies)
Discussion started by: gaurab
13 Replies
5. Shell Programming and Scripting
Hey
I'm new to the forums here, and I'm seeking help for this script that I'm writing. When I do ls -l of a directory it shows the full pathname for files in it. For example, if the directory is /internet/post/forum/ and the file is topic, it currently shows internet/post/forum/topic. What's the... (3 Replies)
Discussion started by: unity04
3 Replies
6. Shell Programming and Scripting
I'm running AIX unix korn shell. If I echo $0, I only get the filename, it does not have the directory name also. So when I do: `dirname $0` it returns a . (meaning current directory). How get $0 to return the full path/filename? Do I need something in my .profile? Thank you. (8 Replies)
Discussion started by: sboxtops
8 Replies
7. Shell Programming and Scripting
How to list all Subdirectories and files with its full path in a parent directory? (1 Reply)
Discussion started by: johnveslin
1 Replies
8. UNIX for Dummies Questions & Answers
I think I know what this is doing, but the 'eval' is confusing
fname=$(echo ${lineItem} | awk 'BEGIN {FS=";"}{print $1}')
fname=${fname%%+(])}
fname=${fname##+(])}
eval "fname=${fname}"
The first line extracts the contents of the line preceeding the ";"
2nd & 3rd lines trim the value (I... (5 Replies)
Discussion started by: jdorn001
5 Replies
9. Shell Programming and Scripting
I need a script which should watch a directory for a file with specific directory.
If it finds a file in directory, it should search for few specific keyword in the file. if the keyword exists, it should trim string from specific column.
The file should be moved to another directory and the a... (8 Replies)
Discussion started by: akashdeepak
8 Replies
10. UNIX for Beginners Questions & Answers
i was attempting to extract a directory path that was passed from a parameter with this code
vdir=`dirname $p1`
echo current directory $vdir
it does not work when the parameter passed has wild card on it.
for example
$ sh sample1.sh "/sbin/log/c*.log"
dirname: extra operand... (2 Replies)
Discussion started by: wtolentino
2 Replies
HFS(1) General Commands Manual HFS(1)
NAME
hfs - shell for manipulating HFS volumes
SYNOPSIS
hfs [hfs-path [partition-no]]
DESCRIPTION
hfs is an interactive command-oriented tool for manipulating HFS volumes. hfs is based on the Tcl interpreter, so basic Tcl constructs can
be used in addition to the following commands:
mount path [partition-no]
The specified UNIX path is opened as an HFS volume. If a partition number n is specified and the volume source is located on a par-
titioned medium, the nth discovered HFS partition will be mounted. The default partition-no is 1.
umount [path]
The volume previously mounted from the specified path (or the current volume, if none specified) is unmounted.
vol path
The volume previously mounted from the specified path is made current.
info General information about the currently mounted volume is displayed. This information is also displayed automatically when the vol-
ume is mounted.
pwd The full path to the current working HFS directory is displayed.
cd [hfs-path]
The current working directory is changed to the given HFS path. If no path is given, the working directory is changed to the root of
the volume.
dir [hfs-path]
A directory listing of the specified HFS directory is displayed. If no path is given, the contents of the current working directory
are shown.
mkdir hfs-path
A new, empty directory is created with the specified path.
rmdir hfs-path
The specified directory is removed. It must be empty.
create hfs-path [type [creator]]
An empty file is created with the specified path. The Macintosh type and creator may be specified, or they will default to TEXT and
UNIX, respectively.
del hfs-path
Both forks of the specified file are deleted.
stat hfs-path
Status information about the specified HFS path-identified entity is displayed.
cat hfs-path
The data fork of the specified HFS file is displayed.
copyin unix-path [hfs-path [mode]]
The specified UNIX file is copied to the named HFS destination path. Unless specified otherwise, the file will be copied into the
current HFS working directory using a heuristically chosen mode. The mode may be one of: macb (MacBinary II), binh (BinHex), text,
or raw.
copyout hfs-path [unix-path [mode]]
The specified HFS file is copied into the named UNIX destination path. Unless specified otherwise, the file will be copied into the
current UNIX working directory using a heuristically chosen mode. The modes are the same as for copyin.
format path [partition-no [volume-name]]
The specified UNIX path is initialized as an empty HFS volume with the given name, and this volume is subsequently mounted. The
default volume name is Untitled.
The shell is scriptable, however it should be understood that the above commands are actually implemented by Tcl procedures prefixed with
the character "h", e.g. hmount, hcd, etc., in order to avoid name collisions with other Tcl utilities. The "h" may be omitted in interac-
tive use for convenience.
SEE ALSO
hfsutils(1), xhfs(1)
BUGS
cat can only display the data fork of a file. Text translations are performed unconditionally on the output. Furthermore, binary data can-
not be handled properly from within Tcl scripts since the character with value 0 cannot be represented in Tcl strings. Use copyout to copy
files without these limitations.
AUTHOR
Robert Leslie <rob@mars.org>
HFSUTILS
15-Jan-1997 HFS(1)