Search Results

Search: Posts Made By: femchi
4,429
Posted By femchi
Then enjoy it. Aso there are some bugs and...
Then enjoy it. Aso there are some bugs and problems. If you fixed them let me find them out too
4,429
Posted By femchi
Segmentation Fault
this is a network programming code to run a rock paper scissors in a client and server.
I completed it and it was working without any error. After I added the findWinner function to the server code...
24,566
Posted By femchi
Problem is I am not supposed to use system ...
Problem is I am not supposed to use system

---------- Post updated 11-22-12 at 12:38 AM ---------- Previous update was 11-21-12 at 10:51 PM ----------

execl("/usr/bin/find","find . -maxdepth 1...
24,566
Posted By femchi
How should I implement this code inside the c...
How should I implement this code inside the c script by using execl function?

find . Maxdepth 1 -perm 0644
24,566
Posted By femchi
Using C language to use system calls
I need to write a C program (not a C++ program) that allows some tasks to be preformed automatically from a menu-driven interface. Automate the following tasks:
1. Rename a file
2. Delete a file...
5,366
Posted By femchi
how should I apply this part to the script? ...
how should I apply this part to the script?

The “Delete files or directories” selection should prompt for a list of files or directories to be deleted. The script asks user for confirmation before...
5,366
Posted By femchi
How to read user keyboard input inside the case?
I need to Write a shell script that allows some system-administration tasks to be preformed automatically from a menu-driven interface. with automated following tasks:

Copy directory tree
Delete...
4,043
Posted By femchi
System administration tasks performed from a menu driven interface
I need to write a shell script that allows some system-administration tasks to be preformed automatically from a menu-driven interface. Automate the following tasks:
• Copy directory tree
• Delete...
2,015
Posted By femchi
#!/bin/sh permission=$1 shift find...
#!/bin/sh

permission=$1

shift

find . -maxdepth 1 -perm $permission -exec $* {} \;


(fixed)
2,015
Posted By femchi
ok. the the code should be like this #!/bin/sh ...
ok. the the code should be like this
#!/bin/sh
perm=$1
shift
find . -perm $perm $* {} \;

but my problem is that I dont know how I should apply the rest of the command line to the result of...
2,015
Posted By femchi
Finding the directories with same permission and then apply some default UNIX commands
Write a Unix shell script named 'mode' that accepts two or more arguments, a file mode, a command and an optional list of parameters and performs the given command with the optional parameters on all...
1,165
Posted By femchi
Finding the directories with same permission and then apply some default UNIX commands
HI there. My teacher asked us to write a code for this question

Write a Unix shell script named 'mode' that accepts two or more arguments, a file mode, a command and an optional list of parameters...
Showing results 1 to 12 of 12

 
All times are GMT -4. The time now is 11:28 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy