write a shell script to check whether all the directories in the path exist has read and write permission
1 5051c program to implement unix/linux command to block the signal ctrl-c and ctrl-\ signal during the execution ls -l|wc -l
3833c program to display the information of given file similar to givan by the unix or linux command ls -l
IBM,
2255c program which accept one argument as a directory name and prints all the file name along with its inode number and total count of the file in directory
1 4530c program the catches the ctrl-c(SIGINT) Signal for the first time and prints a output rather and exit on pressing Ctrl-C again
2 6544c program to check whether all the directories in the path exists has read and write permission
1 3426c program which behaves like a shell(command interpreter). it has its own prompt say "NewShell$".any normal shell command is executed from your shell by starting a child process to execute a system program corrosponding to the command
5480write a program to display all the files from the current directory which are created in particular month
6 11865write a shell script that accepts name from user and creates a directory by the path name, then creates a text file in that directory and stores in it, the data accepted from user till STOP, displays the no. of characters stored in the file.Program stops if directory name is null
1 6661I want to upload a file to remote server through ftp daily.Can anyone suggest how to make a shell script for that.I hv credentials for that ftp
1 4647Post New Shell Script Questions
What is the best shell scripting language?
How will you print the login names of all users on a system?
What does $@ mean in shell?
How do I set bash as default shell mac?
What is sed in shell script?
What is web script?
What is the default ubuntu terminal?
What is an inode block?
I have 2 files and I want to print the records which are common to both.
Write a shell script to get current date, time, user name and current working directory.
How to print the first array element?
What is the first line in a shell script?
What shell is bin sh?
How to calculate the number of passed arguments?
How to replace following lines, catch (DAOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } catch (BOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw e; } catch (Exception e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } Needs to be changed in to, catch (DAOException e) { AppException.handleException (null, null, e, null, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); } catch (BOException e) { AppException.handleException (null, null, null, e, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 0); } catch (Exception e) { AppException.handleException (null, null, null, null, null, e, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); }