Sponsored Content
Full Discussion: Rename files
Top Forums Shell Programming and Scripting Rename files Post 302894151 by Jomeaide on Monday 24th of March 2014 06:47:38 AM
Old 03-24-2014
This:

mover_fichero(){
## Compramos los ficheros y los movemos.
ls *_FX_* | awk '{system("mv " $0 " " sprintf("userbjbfx%02d", ++i))}'
ls *_SP_* | awk '{system("mv " $0 " " sprintf("userbjbsp%02d", ++i))}'
}
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

rename files

hey all, I have files in the format of ABCD20061101 and ABCDEF20061101 in one directory, I would like to change all ABCD20061101 to ABCDEF20061101 and the problem is if I do a simple pattern match of ABCD, then those ABCDEF20061101 would also... (2 Replies)
Discussion started by: mpang_
2 Replies

2. UNIX for Dummies Questions & Answers

rename files help

Hi, I've already search for this issue but I found different scripts for rename files, but I don't know how to customize it for my needs. Here's what I want to do: I have a lot of files inside many directories, like this: /aa/01.txt /aa/02.txt /ab/01.txt /ab/02.txt I want all those files... (2 Replies)
Discussion started by: piltrafa
2 Replies

3. Shell Programming and Scripting

Rename files

Hello, I've a list of file like this img_001 img_22 img_44 and I would rename all with this form photo_0001 photo_0002 photo_0003 photo_0004 suggestions?Thanks to all. (2 Replies)
Discussion started by: cv313x
2 Replies

4. Shell Programming and Scripting

Rename many files

Hi all I have files in the following format: 01_anote1.pdf 01_bnote1.pdf 01_control1.pdf 01_ethics1.pdf 01_invoice1.pdf 01_invoice_21.pdf 20_quote_l1.pdf I need to rename them to 01_anote.pdf 01_bnote.pdf 01_control.pdf 01_ethics.pdf 01_invoice.pdf (9 Replies)
Discussion started by: lmatlebyane
9 Replies

5. Shell Programming and Scripting

Rename files

Hi, I wanna rename bunch of files which has ":" to -. ie. rename file named file1:file1 to file1-file1. any ideas? (2 Replies)
Discussion started by: linuxaddict7
2 Replies

6. Shell Programming and Scripting

rename files Ax based on strings found in files Bx

Hi, I'm not very experienced in shell scripting and that's probably why I came across the following problem: I do have several hundred pairs of text files (PF00x.spl and PF00x.shd) where the first file (PF00x.spl) needs to be renamed according a string that is included in the second file... (12 Replies)
Discussion started by: inCH
12 Replies

7. Shell Programming and Scripting

How to rename files

Hi Guys, I have to rename about 180 files in different folders in linux. For example, abc_110117.txt eff_110117.txt zzz_110117.txt After renaming the files, these files should like like abc.txt eff.txt zzz.txt I created a small script to rename the files like ls... (2 Replies)
Discussion started by: naveed
2 Replies

8. UNIX for Dummies Questions & Answers

Rename all .sh files to .pl

I have various .sh and .pl files in one directory. I want to rename all the .sh files to .pl i.e testscript.sh --> testscript.pl I am trying to use mv *.sh *.pl It doesnt work though!! (3 Replies)
Discussion started by: chrisjones
3 Replies

9. Shell Programming and Scripting

Script to unzip files and Rename the Output-files

Hi all, I have a many folders with zipped files in them. The zipped files are txt files from different folders. The txt files have the same names. If i try to find . -type f -name "*.zip" -exec cp -R {} /myhome/ZIP \; it fails since the ZIP files from different folders have the same names and... (2 Replies)
Discussion started by: pmkenya
2 Replies

10. Shell Programming and Scripting

SBATCH trinity for multiple files and rename/move the output files

Hey guys, I have wrote the following script to apply a module named "trinity" on my files. (it takes two input files and spit a trinity.fasta as output) #!/bin/bash -l #SBATCH -p node #SBATCH -A <projectID> #SBATCH -n 16 #SBATCH -t 7-00:00:00 #SBATCH --mem=128GB #SBATCH --mail-type=ALL... (1 Reply)
Discussion started by: @man
1 Replies
smccompile(1M)						  System Administration Commands					    smccompile(1M)

NAME
smccompile - build class list and compile Solaris Management Console service beans for remote use SYNOPSIS
/usr/sadm/bin/smccompile -c beanname /usr/sadm/bin/smccompile -j tool | service [-n altjarname] jarfile /usr/sadm/bin/smccompile -j library [-n altjarname] ALLTOOL | ALLSERVICE | ALL | attachedBeanname jarfile DESCRIPTION
The smccompile command is used by developers of tools, services, and libraries for the Solaris Management Console. For information regard- ing the Solaris Management Console, see smc(1M). smccompile compiles service class files given by the bean name for use with the Solaris Management Console. This step builds the extra proxy and stub classes for services to be used with Solaris Management Console tools. Solaris Management Console requires running smccom- pile -c before creating service jar files, and smccompile -j after creating tool, service, and library jars. smccompile, in conjunction with smcregister(1M), is intended to replace the smcconf command as the preferred interface for managing the Solaris Management Console repository as well as toolboxes from within scripts, due to significant performance enhancements over smcconf. OPTIONS
The following options are supported: ALL Specify that the library being registered to or unregistered from the repository is for use by all tools and services. ALLSERVICE Specify that the library being registered to or unregistered from the repository is for use by all services. ALLTOOL Specify that the library being registered to or unregistered from the repository is for use by all tools. attachedBeaname Specify the name of a registered jar to which the library jarfile should be attached to (or detached from). This is typi- cally the same as altjarname (if provided) or jarfile used to register the jar to which this library is being attached or detached. An attached library means the library is only available for use by the tool or service to which it is being attached. beanname The full package path of the bean name to be compiled. An example bean name is: com.mycompany.myproduct.MyService. -c Compile and build service class files for the specified bean name. This step builds the extra proxy and stub classes for services to be used with Solaris Management Console tools. You must run smccompile with this option before creating service type jar files. -j Build a list of classes in text format, suitable as input to smcregister for registration with the Solaris Management Con- sole repository. The output is written to standard out and should be redirected to a file. You must run smccompile with this option after creating any tool, service, or library jar. jarfile Specify the full path to the jar file to be registered. The name must be in the form beanname.jar, where beanname is the package path to the bean. If it is not, an alternate name must be given in that form using the -n option. -n altjarname Rename the jarfile in the repository to altjarname. Typically. this is the full bean name. For example, if the jarfile was MyTool.jar, then altjarname might be com.mycompany.myproduct.MyTool.jar. It is recommended that an altjarname containing the full package path be used. You must use this same name when registering the jar with smcregister. EXAMPLES
Example 1: Compiling a Service The following command takes a Solaris Management Console service and builds its proxy and stub classes to make the service usable by Solaris Management Console tools: /usr/sadm/bin/smccompile -c com.mycompany.myproject.MyServiceImpl Example 2: Building a Class List for a Service The following command builds the class list file (classlist.txt) for a service suitable for use with the smcregister(1M) command: /usr/sadm/bin/smccompile -j service -n com.mycompany.myproject.MyServiceImpl.jar ${HOME}/workarea/MyServiceImpl.jar > classlist.txt The following command does the same thing without specifying an alternate name: /usr/sadm/bin/smccompile -j service ${HOME}/workarea/com.mycompany.myproject.MyServiceImpl.jar > classlist.txt Example 3: Building a Class List for a Tool The following command builds the class list file (classlist.txt) for a tool suitable for use with the smcregister(1M) command: /usr/sadm/bin/smccompile -j tool -n com.mycompany.myproject.MyTool.jar ${HOME}/workarea/MyTool.jar > classlist.txt The following command does the same thing without specifying an alternate name: /usr/sadm/bin/smccompile -j tool ${HOME}/workarea/com.mycompany.myproject.MyTool.jar > classlist.txt Example 4: Building a Class List for a Library Attached to All Tools The following command builds the class list file (classlist.txt) for a library suitable for use with the smcregister(1M) command, and is attached to all tools: /usr/sadm/bin/smccompile -j library -n com.mycompany.myproject.MyLibrary.jar ALLTOOL ${HOME}/workarea/MyLibrary.jar > classlist.txt The following command does the same thing without specifying an alternate name: /usr/sadm/bin/smccompile -j library ALLTOOL ${HOME}/workarea/com.mycompany.myproject.MyLibrary.jar > classlist.txt Example 5: Building a Class List for a Library Attached to a Specific Tool The following command builds the class list file (classlist.txt) for a library suitable for use with the smcregister(1M) command, and is attached to a specific tool: /usr/sadm/bin/smccompile -j library -n com.mycompany.myproject.MyLibrary.jar com.mycompany.myproject.MyTool.jar ${HOME}/workarea/MyLibrary.jar > classlist.txt The following command does the same thing without specifying an alternate name: /usr/sadm/bin/smccompile -j library com.mycompany.myproject.MyTool.jar ${HOME}/workarea/com.mycompany.myproject.MyLibrary.jar > classlist.txt ENVIRONMENT VARIABLES
See environ(5) for descriptions of the following environment variables that affect the execution of smccompile: JAVA_HOME If you do not specify this environment variable, your PATH is searched for a suitable java. Otherwise, the /usr/j2se location is used. EXIT STATUS
The following exit values are returned: 0 Successful completion. 1 An error occurred. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWMc | +-----------------------------+-----------------------------+ SEE ALSO
smc(1M), smcconf(1M), smcregister(1M), attributes(5), environ(5) NOTES
All standard shell quoting rules apply. SunOS 5.10 17 Jul 2001 smccompile(1M)
All times are GMT -4. The time now is 02:25 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy