- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Limiting "sudo kill" to killing only user processe...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2011 03:59 AM - edited 07-22-2011 02:03 PM
07-22-2011 03:59 AM - edited 07-22-2011 02:03 PM
Re: Limiting "sudo kill" to killing only user processes
>Is there a way to restrict the input to accept only numerical entries and no wildcards?
The script has no idea if there were wildcards but it can validate the input.
You could use pattern matching to check:
if [[ "$pid" != [0-9][0-9]* ]]; then
echo "Invalid PID: $pid"
continue
fi
And you can optimize the pattern match with:
if [[ "$pid" != +([0-9]) ]]; then
>The comparison != is for strings, while -ne is for numbers.
Right. If you like != so much, you can always use:
(( $? != 0 ))
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2011 09:30 AM
07-22-2011 09:30 AM
Re: Limiting "sudo kill" to killing only user processes
- « Previous
-
- 1
- 2
- Next »