My favorites
▼
|
Sign in
fscops
OHSM - Online Hierarchical Storage Manager
Project Home
Downloads
Wiki
Issues
Source
Export to GitHub
READ-ONLY: This project has been
archived
. For more information see
this post
.
Search
Search within:
All issues
Open issues
New issues
Issues to verify
for
Advanced search
Search tips
Subscriptions
Issue
20
attachment: lvc.c
(262 bytes)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include<stdio.h>
#include<string.h>
int main()
{
char dev[100],buffer[120];
printf("\nEnter the name of the device");
scanf("%[^\n]",dev);
sprintf(buffer,"./lvscript.sh %s",dev);
// printf("%s",buffer);
system(buffer);
return 0;
}
Powered by
Google Project Hosting