Sponsored Content
Full Discussion: script to save file
Special Forums UNIX Desktop Questions & Answers script to save file Post 302353562 by Corona688 on Tuesday 15th of September 2009 03:36:54 PM
Old 09-15-2009
Code:
./program-which-extracts-data < "$input_filename" | gzip > "${input_filename}$(date +%F)..gz"

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Save cURL verbose output to file or do it like browser "save as.."

hi there ! i have exactly the same problem like this guy here https://www.unix.com/shell-programming-scripting/127668-getting-curl-output-verbose-file.html i am not able to save the curl verbose output.. the sollution in this thread (redirecting stderr to a file) does not work for me.... (0 Replies)
Discussion started by: crabmeat
0 Replies

2. Shell Programming and Scripting

Run a bash script, display on the screen and save all information in a file including error info

Hi all, How to: Run a bash script, display on the screen and save all information in a file including error information. For example: I have a bash script called test.sh now I want to run the test.sh and display the output on the screen and save the output including error info to a file. ... (1 Reply)
Discussion started by: Damon sine
1 Replies

3. Shell Programming and Scripting

open file and save as script

hi guys i have a problem with my file did not work as usual. The problem is i need to open the file and save as using same name and after that the file is work properly. Is it any shell script can do open the file and save as using same name..because i have thousand of file with the same problem (3 Replies)
Discussion started by: zulabc
3 Replies

4. Shell Programming and Scripting

Script to port a file from unix and save in windows

hi, when i finish running some scripts in unix...some csv file is getting generated...now im manually taking this csv file from this generated directory and using FTP, i'm importing to windows os and saving in a directory... please give me a script to automate this..so that i can add in my... (1 Reply)
Discussion started by: dll_fpga
1 Replies

5. Shell Programming and Scripting

Save output to file - inside a script ?

I'm using the following script to check cisco router health and I'd like to save output to a file, vty_runcmd.sh > /check/check-cisco-health script works and output is saved to a file. However using it in crontab file is created but output is not printed inside it. In crontab, */5 * * * *... (4 Replies)
Discussion started by: marmellata
4 Replies

6. Shell Programming and Scripting

Expect script brokes when Ping file save

Hi, For some reason I was needed to ping some URL and save the output to a file through Expect script, following is a very basic of that script, but it fails everytime. When I just copied the same 'ping' line to normal Terminal and run, it runs fine. Please, help. #!/bin/sh spawn ping -c 3... (1 Reply)
Discussion started by: santanu4ver
1 Replies

7. Shell Programming and Scripting

Opening a file in vi and automatically save and quit this file using shell script

Hi friends, In my shell script, I want to open a file using vi editor. After opening the file in vi, I want to save and quit this file automatically.... all through shell script. the code segment is: ------------------------------------------------------------ cd ~/netfpga/projects/scone/sw/... (2 Replies)
Discussion started by: sachinteotia
2 Replies

8. Shell Programming and Scripting

How to save the 'nmon' output to a text file with a script?

Hi all, I want to do an Unix Script to save the 'nmon' output on a text file and I don't know how to do it. I need a Script for each monitoring and also one to multiple monitorings. Thanks (6 Replies)
Discussion started by: Javi1990
6 Replies

9. Shell Programming and Scripting

Need Script to ZIP/SAVE & then DELETE Log file & send a mail conformation for any error

ENVIROMENT Linux: RHEL 6.4 Log Path: /usr/iplanet/servers/https-company/logs Log Format: user.log.03-15-2015 I have log4j log rotation enabled rotating files on a daily basis. The rotated logs are NOT compressed & are taking up too much space. I need a script that will run daily that... (1 Reply)
Discussion started by: admin_job_admin
1 Replies

10. Shell Programming and Scripting

Bash script - add/edit to file and save - sed?

I'm working on a script to execute a number of items. One being, editing particular files to add certain lines. I'm attempting to utilize sed, but, having issues when running from a bash script. Assistance is greatly appreciated. My example: sed -i '14 i\ # add these lines add these lines to... (5 Replies)
Discussion started by: Nvizn
5 Replies
gdk-pixbuf-csource(1)						   User Commands					     gdk-pixbuf-csource(1)

NAME
gdk-pixbuf-csource - C code generator for GdkPixbuf images. SYNOPSIS
gdk-pixbuf-csource [--decoder] [---extern] [-h] [--help] [--g-fatal-warnings] [--macros] [--name=identifier] [--raw] [--rle] [--static] [--stream] [--struct] [-v] [--version ] {image} gdk-pixbuf-csource [--decoder] [--extern] [-h] [--help] [--g-fatal-warnings] [--macros] [--raw] [--rle] [--static] [--stream] [--struct] [-v] [--version] [--build-list] {[name image]...} DESCRIPTION
The gdk-pixbuf-csource utility generates C code containing images. You can use gdk-pixbuf-csource to compile images directly into programs. You can use the following types of input with gdk-pixbuf-csource: o A single file, to generate code for the file. o A list of [name image] pairs, using the --build-list option, to generate code for a list of images into named variables. OPTIONS
The following options are supported: --build-list Enable [name image] pair parsing mode. --decoder Provide the following macro definition to decode run-length encoded image data: *_RUN_LENGTH_DECODE image_buf, rle_data, size, bpp --extern Generate extern symbols. This option is only useful with --stream or --struct. The ---extern option causes the structure created to be defined as: const [...] -h, --help Print brief help and exit. --g-fatal-warnings Make warnings fatal. This option causes the program to abort when warnings occur. --macros Generate the following macro definitions for the image: o *_ROWSTRIDE o *_WIDTH o *_HEIGHT o *_BYTES_PER_PIXEL o *_RLE_PIXEL_DATA or *_PIXEL_DATA --name=identifier Specify the identifier name, or prefix, for the generated variables or macros. This option is useful only if you do not specify --build-list. --raw Disable run-length encoding for the generated pixel data. The --raw option dumps out each "(line of data)" in raw image format --rle Enable run-length encoding for the generated pixel data. The --rle option dumps out each line of data in run- length-encoding format. This is a default setting. --static Generate static symbols. This is a default setting. This option is only useful with --stream or --struct. The --static option causes the structure created to be defined as: static const [...] --stream Generate a pixbuf data stream; a single string containing a serialized GdkPixdata structure in network byte order. --struct Generate GdkPixdata structure; needs the GdkPixdata structure definition from gdk-pixdata.h. -v, --version Print version and exit. EXAMPLES
Example 1: To Generate Code From a File example% gdk-pixbuf-csource input_filename Running gdk-pixbuf-csource without any options is the same as specifying the following options: o --stream o --rle o --static Example 2: To Specify a Value for the Structure in the Generated Output example% gdk-pixbuf-csource --name=my_struct --struct input_filename The --name option affects the name of the structure in the generated output when you use either the --stream option or the --struct option. The --name option affects the name of the macro when you use the --macros option. If you use either the --stream option or the --struct option, but you do not specify the --name option, then the default name of the struc- ture in the generated output is my_pixbuf. If you use the --macros option, but you do not specify the --name option, then the default macro names are prefixed with MY_PIXBUF_. Example 3: To Display the Command Output as an Array of Strings example% gdk-pixbuf-csource --name=my_struct --stream input_filename static const guint8 my_struct[] = { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (215281) */ " 3I11" /* pixdata_type (0x2010001) */ "21 1" /* rowstride (960) */ " 3300" /* width (320) */ " 1@" /* height (240) */ " 360" /* pixel_data: */ "(line of data)" [...] Example 4: To Display the Output as a GdkPixdata Structure example% gdk-pixbuf-csource --name=my_struct --struct input_filename const GdkPixdata my_struct = { 0x47646b50, /* Pixbuf magic: 'GdkP' */ 24 + 215281, /* header length + pixel_data length */ 0x2010001, /* pixdata_type */ 960, /* rowstride */ 320, /* width */ 240, /* height */ /* pixel_data: */ "(line of data)" [...] Example 5: To Display the Output as C Macros example% gdk-pixbuf-csource --name=my_struct --macros input_filename #define MY_STRUCT_ROWSTRIDE (960) #define MY_STRUCT_WIDTH (320) #define MY_STRUCT_HEIGHT (240) #define MY_STRUCT_BYTES_PER_PIXEL (3) /* 3:RGB, 4:RGBA */ #define MY_STRUCT_RLE_PIXEL_DATA ((guint8*) "(line of data)" [...] EXIT STATUS
The following exit values are returned: 0 Application exited successfully. 1 Application exited with failure, if any file specified on the command line cannot be read. FILES
The following files are used by this application: /usr/bin/gdk-pixbuf-csource The command-line executable for the application. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWgnome-base-libs-devel | +-----------------------------+-----------------------------+ | | | +-----------------------------+-----------------------------+ |Interface stability |Evolving | +-----------------------------+-----------------------------+ SEE ALSO
gnome-std-optionslibgdk-x11-2.0(3) libgdk_pixbuf-2.0(3) NOTES
Updated by Brian Cameron, Sun Microsystems Inc., April 2003. Written by Tim Janik timj@gtk.org SunOS 5.10 02 April 2003 gdk-pixbuf-csource(1)
All times are GMT -4. The time now is 08:31 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy